mirror of
https://github.com/astral-sh/ruff.git
synced 2025-12-23 09:19:39 +00:00
21 lines
604 B
TOML
21 lines
604 B
TOML
[package]
|
|
name = "ruff_formatter"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[dependencies]
|
|
drop_bomb = { version = "0.1.5" }
|
|
ruff_text_size = { path = "../ruff_text_size" }
|
|
rustc-hash = { workspace = true }
|
|
schemars = { version = "0.8.10", optional = true }
|
|
serde = { version = "1.0.136", features = ["derive"], optional = true }
|
|
tracing = { version = "0.1.31", default-features = false, features = ["std"] }
|
|
unicode-width = { version = "0.1.9" }
|
|
|
|
[dev-dependencies]
|
|
insta = { version = "1.19.0" }
|
|
|
|
[features]
|
|
serde = ["dep:serde", "schemars"]
|