-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
80 lines (71 loc) · 1.82 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "snap"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
[features]
default = ["fxhash"]
ahash = []
metrohash = []
fnv = []
std = []
fxhash = []
[profile.release]
debug = 1
lto = true
codegen-units = 1
[target.'cfg(windows)'.dependencies]
[target.'cfg(unix)'.dependencies]
libc = "0.2.144"
# waiting for procfs v0.17
procfs = { git = "https://github.com/eminence/procfs", features = ["serde1"] }
uzers = "0.11.0"
[dependencies]
clap = { version = "4.0.29", features = ["derive"] }
fast_hilbert = "2.0.0"
flate2 = "1.0.22"
glob = "0.3.0"
rand = "0.8.5"
regex = "1.5.4"
tar = "0.4.37"
procfs-core = { git = "https://github.com/eminence/procfs", features = [
"serde1",
] }
image = { version = "0.24.5", default-features = false, features = ["png"] }
colorgrad = "0.6.2"
#eframe = "0.20.0"
imageproc = "0.23.0"
drill-press = "0.1.1"
rusttype = "0.9.3"
humansize = "2.1.3"
itertools = "0.12"
lenient_semver = "0.4.2"
oracle = "0.6.2"
#users = "0.11.0"
stats_alloc = "0.1.10"
ahash = "0.8.3"
fnv = "1.0.7"
xxhash-rust = "0.8.6"
metrohash = "1.0.6"
rayon = "1.6.1"
indicatif = { version = "0.17.3", features = ["rayon"] }
env_logger = "0.10.0"
log = "0.4.17"
rustc-hash = "1.1.0"
anyhow = "1.0.69"
serde = { version = "1.0.158", features = ["derive"] }
serde_json = "1.0.95"
rustix = { version = "0.37.19", features = ["fs"] }
nix = { version = "0.26.2", features = ["fs"], default-features = false }
tabled = { version = "0.12.0" }
colored = "2.0.0"
macroquad = "0.4.4"
rmp-serde = "1.1.2"
rmp = "0.8.12"
bincode = "1.3.3"
ciborium = "0.2.2"
egui-macroquad = { git = "https://github.com/optozorax/egui-macroquad", default-features = false }
egui_extras = "0.25.0"
#egui-macroquad = { version = "0.15.0", default-features = false }
#once_cell = "1.17.1"