mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-15 21:09:04 +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`
28 lines
683 B
TOML
28 lines
683 B
TOML
[package]
|
|
name = "ruff_python_trivia"
|
|
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]
|
|
ruff_text_size = { path = "../ruff_text_size" }
|
|
ruff_source_file = { path = "../ruff_source_file" }
|
|
|
|
itertools = { workspace = true }
|
|
unicode-ident = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
insta = { workspace = true }
|
|
ruff_python_parser = { path = "../ruff_python_parser" }
|
|
ruff_python_index = { path = "../ruff_python_index" }
|
|
|
|
[lints]
|
|
workspace = true
|