mirror of
https://github.com/astral-sh/ruff.git
synced 2026-05-06 08:56:57 -04:00
56 lines
1.6 KiB
TOML
56 lines
1.6 KiB
TOML
[package]
|
|
name = "ty_python_core"
|
|
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 }
|
|
|
|
[dependencies]
|
|
ruff_db = { workspace = true }
|
|
ruff_index = { workspace = true, features = ["salsa"] }
|
|
ruff_memory_usage = { workspace = true }
|
|
ruff_python_ast = { workspace = true, features = ["salsa"] }
|
|
ruff_python_parser = { workspace = true }
|
|
ruff_python_trivia = { workspace = true }
|
|
ruff_text_size = { workspace = true }
|
|
ty_module_resolver = { workspace = true }
|
|
ty_vendored = { workspace = true }
|
|
ty_site_packages = { workspace = true }
|
|
ty_combine = { workspace = true }
|
|
|
|
bitflags = { workspace = true }
|
|
bitvec = { workspace = true }
|
|
get-size2 = { workspace = true, features = ["indexmap", "ordermap"] }
|
|
hashbrown = { workspace = true }
|
|
itertools = { workspace = true }
|
|
ruff_macros = { workspace = true, optional = true }
|
|
rustc-hash = { workspace = true }
|
|
salsa = { workspace = true, features = ["compact_str", "ordermap"] }
|
|
schemars = { workspace = true, optional = true }
|
|
serde = { workspace = true, optional = true }
|
|
serde_json = {workspace = true, optional = true }
|
|
smallvec = { workspace = true }
|
|
static_assertions = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
ruff_db = { workspace = true, features = ["testing", "os"] }
|
|
ruff_python_parser = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
[features]
|
|
serde = ["dep:serde", "dep:ruff_macros"]
|
|
schemars = ["dep:schemars", "dep:serde_json"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|