mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 10:48:32 +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`
27 lines
586 B
TOML
27 lines
586 B
TOML
[package]
|
|
name = "ruff_source_file"
|
|
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]
|
|
|
|
[dependencies]
|
|
memchr = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
ruff_text_size = { path = "../ruff_text_size" }
|
|
serde = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
|
|
[features]
|
|
serde = ["dep:serde", "ruff_text_size/serde"]
|
|
|
|
[lints]
|
|
workspace = true
|