mirror of https://github.com/astral-sh/ruff
85 lines
2.6 KiB
TOML
85 lines
2.6 KiB
TOML
[package]
|
|
name = "ruff"
|
|
version = "0.0.263"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
documentation.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "ruff"
|
|
|
|
[dependencies]
|
|
ruff_cache = { path = "../ruff_cache" }
|
|
ruff_diagnostics = { path = "../ruff_diagnostics", features = ["serde"] }
|
|
ruff_macros = { path = "../ruff_macros" }
|
|
ruff_python_ast = { path = "../ruff_python_ast", features = ["serde"] }
|
|
ruff_python_semantic = { path = "../ruff_python_semantic" }
|
|
ruff_python_stdlib = { path = "../ruff_python_stdlib" }
|
|
ruff_rustpython = { path = "../ruff_rustpython" }
|
|
ruff_text_size = { workspace = true }
|
|
|
|
annotate-snippets = { version = "0.9.1", features = ["color"] }
|
|
anyhow = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
chrono = { workspace = true }
|
|
clap = { workspace = true, features = ["derive", "string"], optional = true }
|
|
colored = { workspace = true }
|
|
dirs = { version = "5.0.0" }
|
|
fern = { version = "0.6.1" }
|
|
glob = { workspace = true }
|
|
globset = { workspace = true }
|
|
ignore = { workspace = true }
|
|
imperative = { version = "1.0.4" }
|
|
is-macro = { workspace = true }
|
|
itertools = { workspace = true }
|
|
libcst = { workspace = true }
|
|
log = { workspace = true }
|
|
natord = { version = "1.0.9" }
|
|
nohash-hasher = { workspace = true }
|
|
num-bigint = { version = "0.4.3" }
|
|
num-traits = { version = "0.2.15" }
|
|
once_cell = { workspace = true }
|
|
path-absolutize = { workspace = true, features = [
|
|
"once_cell_cache",
|
|
"use_unix_paths_on_wasm",
|
|
] }
|
|
pathdiff = { version = "0.2.1" }
|
|
pep440_rs = { version = "0.3.1", features = ["serde"] }
|
|
quick-junit = { version = "0.3.2" }
|
|
regex = { workspace = true }
|
|
result-like = { version = "0.4.6" }
|
|
rustc-hash = { workspace = true }
|
|
rustpython-common = { workspace = true }
|
|
rustpython-parser = { workspace = true }
|
|
schemars = { workspace = true }
|
|
semver = { version = "1.0.16" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
similar = { workspace = true, features = ["inline"] }
|
|
shellexpand = { workspace = true }
|
|
smallvec = { workspace = true }
|
|
strum = { workspace = true }
|
|
strum_macros = { workspace = true }
|
|
textwrap = { workspace = true }
|
|
thiserror = { version = "1.0.38" }
|
|
toml = { workspace = true }
|
|
typed-arena = { version = "2.0.2" }
|
|
unicode-width = { version = "0.1.10" }
|
|
|
|
[dev-dependencies]
|
|
insta = { workspace = true }
|
|
pretty_assertions = "1.3.0"
|
|
test-case = { workspace = true }
|
|
# Disable colored output in tests
|
|
colored = { workspace = true, features = ["no-color"] }
|
|
|
|
[features]
|
|
default = []
|
|
logical_lines = []
|
|
jupyter_notebook = []
|