mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 02:38:25 +00:00
70 lines
1.9 KiB
TOML
70 lines
1.9 KiB
TOML
[package]
|
|
name = "ruff_workspace"
|
|
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 }
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
ruff_cache = { workspace = true }
|
|
ruff_formatter = { workspace = true }
|
|
ruff_graph = { workspace = true, features = ["serde", "schemars"] }
|
|
ruff_linter = { workspace = true }
|
|
ruff_macros = { workspace = true }
|
|
ruff_python_ast = { workspace = true }
|
|
ruff_python_formatter = { workspace = true, features = ["serde"] }
|
|
ruff_python_semantic = { workspace = true, features = ["serde"] }
|
|
ruff_python_stdlib = { workspace = true }
|
|
ruff_source_file = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
colored = { workspace = true }
|
|
ignore = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
is-macro = { workspace = true }
|
|
itertools = { workspace = true }
|
|
log = { workspace = true }
|
|
matchit = { workspace = true }
|
|
glob = { workspace = true }
|
|
globset = { workspace = true }
|
|
path-absolutize = { workspace = true }
|
|
path-slash = { workspace = true }
|
|
pep440_rs = { workspace = true }
|
|
regex = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
schemars = { workspace = true, optional = true }
|
|
serde = { workspace = true }
|
|
shellexpand = { workspace = true }
|
|
strum = { workspace = true }
|
|
toml = { workspace = true }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
etcetera = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# Enable test rules during development
|
|
ruff_linter = { workspace = true, features = ["clap", "test-rules"] }
|
|
tempfile = { workspace = true }
|
|
|
|
[package.metadata.cargo-shear]
|
|
# Used via macro expansion.
|
|
ignored = ["colored"]
|
|
|
|
[features]
|
|
default = []
|
|
schemars = [
|
|
"dep:schemars",
|
|
"ruff_formatter/schemars",
|
|
"ruff_python_formatter/schemars",
|
|
"ruff_python_semantic/schemars",
|
|
]
|
|
|
|
[lints]
|
|
workspace = true
|