mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-14 12:29:11 +00:00

## Summary I used `cargo-shear` (see [tweet](https://twitter.com/boshen_c/status/1770106165923586395)) to remove some unused dependencies that `cargo udeps` wasn't reporting. <!-- What's the purpose of the change? What does it do, and why? --> ## Test Plan `cargo test`
35 lines
923 B
TOML
35 lines
923 B
TOML
[package]
|
|
name = "ruff_notebook"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
ruff_diagnostics = { path = "../ruff_diagnostics" }
|
|
ruff_source_file = { path = "../ruff_source_file", features = ["serde"] }
|
|
ruff_text_size = { path = "../ruff_text_size" }
|
|
|
|
anyhow = { workspace = true }
|
|
itertools = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_with = { workspace = true, default-features = false, features = ["macros"] }
|
|
thiserror = { workspace = true }
|
|
uuid = { workspace = true }
|
|
rand = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
test-case = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|