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:
Charlie Marsh 2024-05-13 10:37:50 -04:00 committed by GitHub
parent b371713591
commit af60d539ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 155 additions and 133 deletions

View file

@ -13,9 +13,9 @@ license = { workspace = true }
[lib]
[dependencies]
ruff_python_trivia = { path = "../ruff_python_trivia" }
ruff_source_file = { path = "../ruff_source_file" }
ruff_text_size = { path = "../ruff_text_size" }
ruff_python_trivia = { workspace = true }
ruff_source_file = { workspace = true }
ruff_text_size = { workspace = true }
aho-corasick = { workspace = true }
bitflags = { workspace = true }