mirror of https://github.com/astral-sh/ruff
19 lines
557 B
TOML
19 lines
557 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 = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|