mirror of
https://github.com/astral-sh/ruff
synced 2026-01-22 14:00:51 -05:00
In hindsight, `ruff_python` is too general. A good giveaway is that it's actually a prefix of some other crates. The intent of this crate is to reimplement pieces of the Python standard library and CPython itself, so `ruff_python_stdlib` feels appropriate.
29 lines
820 B
TOML
29 lines
820 B
TOML
[package]
|
|
name = "ruff_python_formatter"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[dependencies]
|
|
ruff_formatter = { path = "../ruff_formatter" }
|
|
ruff_python_stdlib = { path = "../ruff_python_stdlib" }
|
|
ruff_rustpython = { path = "../ruff_rustpython" }
|
|
ruff_text_size = { path = "../ruff_text_size" }
|
|
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true }
|
|
is-macro = { workspace = true }
|
|
itertools = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
rustpython-common = { workspace = true }
|
|
rustpython-parser = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
ruff_testing_macros = { path = "../ruff_testing_macros" }
|
|
|
|
insta = { workspace = true, features = [] }
|
|
test-case = { workspace = true }
|
|
similar = { workspace = true }
|