Move RustPython vendored and helper code into its own crate (#3171)

This commit is contained in:
Charlie Marsh 2023-02-23 09:14:16 -05:00 committed by GitHub
parent 0f04aa2a5f
commit 095f005bf4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 58 additions and 57 deletions

View file

@ -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" }