-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 870 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 870 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
[workspace]
members = [
"crates/nccue-core",
"crates/nccue-renderer",
"crates/nccue-cli",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.1.0"
authors = ["NCCue Contributors"]
license = "MIT"
homepage = "https://github.com/elad-d/NCCue"
repository = "https://github.com/elad-d/NCCue"
keywords = ["nccl", "gpu", "monitoring", "hpc", "performance"]
categories = ["development-tools", "command-line-utilities"]
rust-version = "1.70.0"
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace.dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
env_logger = "0.11"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
csv = "1"
regex = "1"
thiserror = "1"
time = { version = "0.3", features = ["parsing", "formatting"] }
log = "0.4"
libc = "0.2"