ruff/crates/ruff_python_formatter/Cargo.toml
Charlie Marsh 1d756dc3a7
Move Python whitespace utilities into new ruff_python_whitespace crate (#4993)
## Summary

`ruff_newlines` becomes `ruff_python_whitespace`, and includes the
existing "universal newline" handlers alongside the Python
whitespace-specific utilities.
2023-06-10 00:59:57 +00:00

28 lines
795 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_whitespace = { path = "../ruff_python_whitespace" }
ruff_python_ast = { path = "../ruff_python_ast" }
ruff_text_size = { workspace = true }
anyhow = { workspace = true }
clap = { workspace = true }
countme = "3.0.1"
is-macro = { workspace = true }
itertools = { workspace = true }
once_cell = { workspace = true }
rustc-hash = { 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 }