mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-24 13:34:40 +00:00
33 lines
960 B
TOML
33 lines
960 B
TOML
[package]
|
|
name = "ruff_python_formatter"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { 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 }
|