-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (33 loc) · 893 Bytes
/
Cargo.toml
File metadata and controls
34 lines (33 loc) · 893 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
[package]
name = "edera-check"
version = "0.2.18"
edition = "2024"
license = "Apache-2.0"
description = "CLI to run checks before installing or using Edera"
homepage = "https://github.com/edera-dev/edera-check"
repository = "https://github.com/edera-dev/edera-check"
keywords = ["edera", "preinstall", "postinstall", "cli", "check"]
exclude = [
".github",
".release-plz.toml",
"**/*.orig"
]
[dependencies]
anyhow = "1.0"
chrono = "0.4"
env_logger = "0.11"
flate2 = "1.1"
log = "0.4"
procfs = "0.18"
sysinfo = "0.38"
tar = "0.4"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7" }
tokio-stream = { version = "0.1", features = ["io-util", "net"] }
nix = { version= "0.31", features = ["sched", "user"] }
futures = "0.3"
async-trait = "0.1"
clap = { version = "4.6", features = ["derive"] }
console = "0.16"
bytesize = "2.3"
dmidecode = "1.0"