forked from gauge-sh/tach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 880 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
[package]
name = "tach"
version = "0.10.0"
edition = "2021"
[lib]
name = "tach"
crate-type = ["cdylib", "lib"]
bench = false
[dependencies]
pyo3 = "0.22.1"
regex = "1.10.6"
once_cell = "1.19.0"
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.14"
toml = "0.8.19"
thiserror = "1.0.63"
serde = { version = "1.0.206", features = ["derive"] }
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
pprof = { version = "0.13", features = ["flamegraph", "criterion"] }