forked from nokyan/resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (41 loc) · 1.09 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
[package]
name = "restop"
version = "0.0.1-241031"
authors = ["aeghn <[email protected]>"]
edition = "2021"
[profile.dev]
opt-level = 1
[profile.release]
strip = true
lto = true
[dependencies]
process-data = { path = "lib/process_data" }
glob = { version = "0.3.1" }
anyhow = { version = "1.0.86", features = ["backtrace"] }
regex = "1.10.4"
sysconf = "0.3.4"
nvml-wrapper = "0.10.0"
nix = { version = "0.29.0", default-features = false, features = [
"signal",
"fs",
] }
serde = { version = "1.0.203", features = ["serde_derive"] }
strum = "0.26.2"
strum_macros = "0.26.3"
once_cell = "1.19.0"
hashbrown = "0.14.5"
num_cpus = "1.16.0"
chrono = "0.4.38"
tracing = "0.1.40"
bitflags = "2.5.0"
chin-tools = { git = "https://github.com/aeghn/chin-tools" }
crossterm = { version = "0.27.0", features = ["event-stream"] }
itertools = "0.13.0"
flume = { version = "0.11.0", default-features = false, features = ["async"] }
ratatui = { version = "0", features = [] }
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.18"
append-only-vec = "0.1.4"
rust-ini = "0.21.0"
libc = "0.2.155"
unicode-width = "0.1.13"