mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-03 10:22:24 +00:00
![renovate[bot]](/assets/img/avatar_default.png)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Micha Reiser <micha@reiser.io>
63 lines
1.8 KiB
TOML
63 lines
1.8 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_source_file = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
colored = { workspace = true }
|
|
ignore = { 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
|