mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-28 06:14:27 +00:00
Move sub-crates to workspace dependencies (#11407)
## Summary This matches the setup we use in `uv` and allows for consistency in the `Cargo.toml` files.
This commit is contained in:
parent
b371713591
commit
af60d539ab
26 changed files with 155 additions and 133 deletions
|
@ -13,8 +13,8 @@ license = { workspace = true }
|
|||
[lib]
|
||||
|
||||
[dependencies]
|
||||
ruff_python_ast = { path = "../ruff_python_ast" }
|
||||
ruff_text_size = { path = "../ruff_text_size" }
|
||||
ruff_python_ast = { workspace = true }
|
||||
ruff_text_size = { workspace = true }
|
||||
|
||||
anyhow = { workspace = true }
|
||||
bitflags = { workspace = true }
|
||||
|
@ -29,7 +29,7 @@ unicode_names2 = { workspace = true }
|
|||
unicode-normalization = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
ruff_source_file = { path = "../ruff_source_file" }
|
||||
ruff_source_file = { workspace = true }
|
||||
|
||||
annotate-snippets = { workspace = true }
|
||||
insta = { workspace = true, features = ["glob"] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue