mirror of https://github.com/astral-sh/ruff
93 lines
3.0 KiB
TOML
93 lines
3.0 KiB
TOML
[package]
|
|
name = "ruff_linter"
|
|
version = "0.2.1"
|
|
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 = { path = "../ruff_cache" }
|
|
ruff_diagnostics = { path = "../ruff_diagnostics", features = ["serde"] }
|
|
ruff_index = { path = "../ruff_index" }
|
|
ruff_notebook = { path = "../ruff_notebook" }
|
|
ruff_macros = { path = "../ruff_macros" }
|
|
ruff_python_ast = { path = "../ruff_python_ast", features = ["serde"] }
|
|
ruff_python_codegen = { path = "../ruff_python_codegen" }
|
|
ruff_python_index = { path = "../ruff_python_index" }
|
|
ruff_python_literal = { path = "../ruff_python_literal" }
|
|
ruff_python_semantic = { path = "../ruff_python_semantic" }
|
|
ruff_python_stdlib = { path = "../ruff_python_stdlib" }
|
|
ruff_python_trivia = { path = "../ruff_python_trivia" }
|
|
ruff_python_parser = { path = "../ruff_python_parser" }
|
|
ruff_source_file = { path = "../ruff_source_file", features = ["serde"] }
|
|
ruff_text_size = { path = "../ruff_text_size" }
|
|
|
|
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 }
|
|
once_cell = { workspace = true }
|
|
path-absolutize = { workspace = true, features = [
|
|
"once_cell_cache",
|
|
"use_unix_paths_on_wasm",
|
|
] }
|
|
pathdiff = { workspace = true }
|
|
pep440_rs = { workspace = true, features = ["serde"] }
|
|
pyproject-toml = { workspace = true }
|
|
quick-junit = { workspace = true }
|
|
regex = { workspace = true }
|
|
result-like = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
schemars = { workspace = true, optional = true }
|
|
semver = { workspace = 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 }
|
|
url = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
insta = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|
|
test-case = { workspace = true }
|
|
# Disable colored output in tests
|
|
colored = { workspace = true, features = ["no-color"] }
|
|
tempfile = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
schemars = ["dep:schemars"]
|
|
# Enables rules for internal integration tests
|
|
test-rules = []
|
|
|
|
[lints]
|
|
workspace = true
|