-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (35 loc) · 850 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (35 loc) · 850 Bytes
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
[package]
name = "icb"
version = "0.11.3"
edition = "2021"
publish = false
license = "MIT"
[workspace]
resolver = "2"
members = [
"crates/icb-common",
"crates/icb-parser",
"crates/icb-graph",
"crates/icb-clang",
"crates/icb-cli",
"crates/icb-server",
"crates/icb-report",
"benches/icb-clang",
"benches/icb-graph",
"benches/icb-server",
"benches/icb-parser",
"benches/icb-rustc",
"scripts/generate-bench-json", "crates/icb-rustc", "benches/icb-rustc", "scripts/benchmark-regression-check", "scripts/perf-engine",
]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
anyhow = "1"
thiserror = "1"
petgraph = "0.8"
tree-sitter = "0.22"
tree-sitter-python = "0.21"
rayon = "1"
parking_lot = "0.12"
log = "0.4"
env_logger = "0.11"
clap = { version = "4", features = ["derive"] }