-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (49 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
53 lines (49 loc) · 1.38 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
53
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.package]
version = "0.7.0"
edition = "2024"
license = "MIT"
rust-version = "1.93"
[workspace.dependencies]
# Internal crates
csvizmo-can = { path = "crates/csvizmo-can" }
csvizmo-csv = { path = "crates/csvizmo-csv" }
csvizmo-depgraph = { path = "crates/csvizmo-depgraph" }
csvizmo-minpath = { path = "crates/csvizmo-minpath" }
csvizmo-stats = { path = "crates/csvizmo-stats" }
csvizmo-utils = { path = "crates/csvizmo-utils" }
# External dependencies
byteorder = "1.5.0"
cargo_metadata = "0.23.1"
clap = { version = "4.5.28", features = ["derive"] }
color-eyre = "0.6.3"
csv = "1.3.1"
dot-parser = "0.6.1"
either = "1"
eyre = "0.6.12"
globset = "0.4.18"
gnuplot = "0.0.46"
graphrs = "0.11"
hex = { version = "0.4.3", features = ["serde"] }
indexmap = "2"
itertools = "0.14.0"
mermaid-rs-renderer = { version = "0.1.2", default-features = false }
itertools-num = "0.1.3"
kernel-density-estimation = "0.2.0"
ordered-float = "5.0.0"
petgraph = "0.8"
rand = "0.9"
regex = "1"
pathdiff = "0.2.3"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1"
tempfile = "3.20.0"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
# Dev dependencies
assert_cmd = { version = "2.1.1", features = ["color-auto"] }
csvizmo-test = { path = "crates/csvizmo-test" }
ctor = "0.6"
pretty_assertions = "1.4.1"