20 lines
548 B
TOML
20 lines
548 B
TOML
[package]
|
|
name = "ruff_shrinking"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true }
|
|
fs-err = "2.9.0"
|
|
regex = { workspace = true }
|
|
ruff_python_ast = { path = "../ruff_python_ast" }
|
|
ruff_python_parser = { path = "../ruff_python_parser" }
|
|
ruff_text_size = { path = "../ruff_text_size" }
|
|
|
|
shlex = "1.1.0"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|