-
Notifications
You must be signed in to change notification settings - Fork 36
/
Cargo.toml
35 lines (31 loc) · 954 Bytes
/
Cargo.toml
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
[package]
name = "tach"
version = "0.14.3"
edition = "2021"
[lib]
name = "tach"
crate-type = ["cdylib", "lib"]
bench = false
[dependencies]
pyo3 = "0.22.5"
regex = "1.11.1"
once_cell = "1.20.2"
walkdir = "2.5.0"
ruff_python_ast = { git = "https://github.com/astral-sh/ruff.git", tag = "v0.4.5" }
ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git", tag = "v0.4.5" }
ruff_source_file = { git = "https://github.com/astral-sh/ruff.git", tag = "v0.4.5" }
cached = { version = "0.53.1", features = ["disk_store"] }
globset = "0.4.15"
toml = "0.8.19"
thiserror = "2.0.3"
serde = { version = "1.0.215", features = ["derive"] }
glob = "0.3.1"
petgraph = "0.6.5"
serde_json = "1.0.133"
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
pprof = { version = "0.14", features = ["flamegraph", "criterion"] }
rstest = "0.22.0"