mirror of https://github.com/astral-sh/ruff
Remove an unused dependency (#10747)
## Summary Continuation of #10475, I improved [`cargo shear`](https://github.com/Boshen/cargo-shear) even more. We can put this in CI once I test it a bit more, given that [ignoring false positives](https://github.com/Boshen/cargo-shear?tab=readme-ov-file#ignore-false-positives) has been implemented. ## Test Plan `cargo check --all-features --all-targets`
This commit is contained in:
parent
6e1c061e5f
commit
d467aa78c2
|
|
@ -2337,7 +2337,6 @@ name = "ruff_python_parser"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bitflags 2.5.0",
|
|
||||||
"bstr",
|
"bstr",
|
||||||
"insta",
|
"insta",
|
||||||
"is-macro",
|
"is-macro",
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@ ruff_python_ast = { path = "../ruff_python_ast" }
|
||||||
ruff_text_size = { path = "../ruff_text_size" }
|
ruff_text_size = { path = "../ruff_text_size" }
|
||||||
|
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
bitflags = { workspace = true }
|
|
||||||
bstr = { workspace = true }
|
bstr = { workspace = true }
|
||||||
is-macro = { workspace = true }
|
is-macro = { workspace = true }
|
||||||
itertools = { workspace = true }
|
itertools = { workspace = true }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue