-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (34 loc) · 1 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
[package]
name = "doh"
version = "0.1.1"
edition = "2021"
license = "GNU GPLv3"
repository = "https://github.com/ZimaBlue-AI/DoH"
description = "Distributed jObs Hypervisor"
rust-version = "1.82.0"
authors = ["ZimaBlueAI <zimablueai@proton.me>"]
[[bin]]
name = "node_monitor"
path = "src/node_monitor.rs"
doc = false
[[bin]]
name = "job_monitor"
path = "src/job_monitor.rs"
doc = false
[dependencies]
sysinfo = "0.32.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.133"
procfs = "0.17.0"
regex = "1.5.4"
tokio = { version = "1", features = ["full", "rt-multi-thread"] }
log = "0.4"
env_logger = "0.11.5"
uuid = {version = "^1.8.0", features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]}
uuid-macro-internal = { version = "1.0.0-alpha.1" }
anyhow = "1.0"
reqwest = { version="0.12.2", features = ["json", "multipart", "stream"] }