mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 02:38:25 +00:00
Move RustPython vendored and helper code into its own crate (#3171)
This commit is contained in:
parent
0f04aa2a5f
commit
095f005bf4
19 changed files with 58 additions and 57 deletions
|
@ -6,17 +6,20 @@ edition = { workspace = true }
|
|||
rust-version = { workspace = true }
|
||||
|
||||
[dependencies]
|
||||
ruff_formatter = { path = "../ruff_formatter" }
|
||||
ruff_rustpython = { path = "../ruff_rustpython" }
|
||||
ruff_text_size = { path = "../ruff_text_size" }
|
||||
|
||||
anyhow = { workspace = true }
|
||||
clap = { workspace = true }
|
||||
once_cell = { workspace = true }
|
||||
ruff_formatter = { path = "../ruff_formatter" }
|
||||
ruff_text_size = { path = "../ruff_text_size" }
|
||||
rustc-hash = { workspace = true }
|
||||
rustpython-common = { workspace = true }
|
||||
rustpython-parser = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
ruff_testing_macros = { path = "../ruff_testing_macros" }
|
||||
|
||||
insta = { version = "1.19.0", features = [] }
|
||||
test-case = { version = "2.2.2" }
|
||||
ruff_testing_macros = { path = "../ruff_testing_macros" }
|
||||
similar = "2.2.1"
|
||||
similar = { version = "2.2.1" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue