forked from tach-org/tach
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (46 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
52 lines (46 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "tach"
version = "0.33.0"
edition = "2024"
[lib]
name = "tach"
crate-type = ["cdylib", "lib"]
bench = false
[dependencies]
pyo3 = { version = "0.27.1", features = ["abi3-py37"] }
regex = "1.11.1"
once_cell = "1.21.3"
ruff_python_ast = { git = "https://github.com/astral-sh/ruff.git", package="ruff_python_ast", tag = "0.14.3" }
ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git", package="ruff_python_parser", tag = "0.14.3" }
ruff_linter = { git = "https://github.com/astral-sh/ruff.git", package="ruff_linter", tag = "0.14.3" }
ruff_source_file = { git = "https://github.com/astral-sh/ruff.git", package="ruff_source_file", tag = "0.14.3" }
ruff_text_size = { git = "https://github.com/astral-sh/ruff.git", package="ruff_text_size", tag = "0.14.3" }
cached = { version = "0.54.0", features = ["disk_store"] }
globset = "0.4.15"
toml = "0.8.19"
thiserror = "2.0.7"
serde = { version = "1.0.216", features = ["derive"] }
glob = "0.3.2"
petgraph = "0.7.1"
serde_json = "1.0.134"
tempfile = "3.17.0"
lsp-server = "0.7.7"
lsp-types = "0.97.0"
crossbeam-channel = "0.5.14"
ctrlc = "3.4.5"
rayon = "1.10.0"
parking_lot = "0.12.3"
itertools = "0.14.0"
toml_edit = "0.22.24"
console = "0.15.11"
ignore = "0.4.23"
dashmap = { version = "6.1.0", features = ["serde", "rayon", "inline"] }
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
[profile.profiling]
inherits = "release"
debug = true
[dev-dependencies]
rstest = "0.24.0"
serial_test = "3.2.0"