mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-03 18:28:24 +00:00
87 lines
2.7 KiB
TOML
87 lines
2.7 KiB
TOML
[package]
|
|
name = "ruff_linter"
|
|
version = "0.7.2"
|
|
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_diagnostics = { workspace = true, features = ["serde"] }
|
|
ruff_notebook = { workspace = true }
|
|
ruff_macros = { workspace = true }
|
|
ruff_python_ast = { workspace = true, features = ["serde", "cache"] }
|
|
ruff_python_codegen = { workspace = true }
|
|
ruff_python_index = { workspace = true }
|
|
ruff_python_literal = { workspace = true }
|
|
ruff_python_semantic = { workspace = true }
|
|
ruff_python_stdlib = { workspace = true }
|
|
ruff_python_trivia = { workspace = true }
|
|
ruff_python_parser = { workspace = true }
|
|
ruff_source_file = { workspace = true, features = ["serde"] }
|
|
ruff_text_size = { workspace = true }
|
|
|
|
aho-corasick = { workspace = true }
|
|
annotate-snippets = { workspace = true, features = ["color"] }
|
|
anyhow = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
chrono = { workspace = true }
|
|
clap = { workspace = true, features = ["derive", "string"], optional = true }
|
|
colored = { workspace = true }
|
|
fern = { workspace = true }
|
|
glob = { workspace = true }
|
|
globset = { workspace = true }
|
|
imperative = { workspace = true }
|
|
is-macro = { workspace = true }
|
|
is-wsl = { workspace = true }
|
|
itertools = { workspace = true }
|
|
libcst = { workspace = true }
|
|
log = { workspace = true }
|
|
memchr = { workspace = true }
|
|
natord = { workspace = true }
|
|
path-absolutize = { workspace = true, features = [
|
|
"once_cell_cache",
|
|
"use_unix_paths_on_wasm",
|
|
] }
|
|
pathdiff = { workspace = true }
|
|
pep440_rs = { workspace = true }
|
|
pyproject-toml = { workspace = true }
|
|
quick-junit = { workspace = true }
|
|
regex = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
schemars = { workspace = true, optional = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
similar = { workspace = true }
|
|
smallvec = { workspace = true }
|
|
strum = { workspace = true }
|
|
strum_macros = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
toml = { workspace = true }
|
|
typed-arena = { workspace = true }
|
|
unicode-width = { workspace = true }
|
|
unicode_names2 = { workspace = true }
|
|
unicode-normalization = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
insta = { workspace = true, features = ["filters", "json", "redactions"] }
|
|
test-case = { workspace = true }
|
|
# Disable colored output in tests
|
|
colored = { workspace = true, features = ["no-color"] }
|
|
|
|
[features]
|
|
default = []
|
|
schemars = ["dep:schemars", "ruff_python_ast/schemars"]
|
|
# Enables rules for internal integration tests
|
|
test-rules = []
|
|
|
|
[lints]
|
|
workspace = true
|