mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 18:58:04 +00:00
49 lines
1.5 KiB
TOML
49 lines
1.5 KiB
TOML
[package]
|
|
name = "ty"
|
|
version = "0.0.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ruff_db = { workspace = true, features = ["os", "cache"] }
|
|
ruff_python_ast = { workspace = true }
|
|
ty_python_semantic = { workspace = true }
|
|
ty_project = { workspace = true, features = ["zstd"] }
|
|
ty_server = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
argfile = { workspace = true }
|
|
clap = { workspace = true, features = ["wrap_help"] }
|
|
colored = { workspace = true }
|
|
countme = { workspace = true, features = ["enable"] }
|
|
crossbeam = { workspace = true }
|
|
ctrlc = { version = "3.4.4" }
|
|
jiff = { workspace = true }
|
|
rayon = { workspace = true }
|
|
salsa = { workspace = true }
|
|
tracing = { workspace = true, features = ["release_max_level_debug"] }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
|
|
tracing-flame = { workspace = true }
|
|
tracing-tree = { workspace = true }
|
|
wild = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
ruff_db = { workspace = true, features = ["testing"] }
|
|
ruff_python_trivia = { workspace = true }
|
|
|
|
insta = { workspace = true, features = ["filters"] }
|
|
insta-cmd = { workspace = true }
|
|
filetime = { workspace = true }
|
|
regex = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
toml = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|