-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (32 loc) · 858 Bytes
/
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 = "ironfetch"
version = "0.3.1"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "*", features = ["derive"] }
measurements = "*"
nix = { version="*", features = ["feature"]}
os-release = "*"
procfs = "*"
sys-info = "*"
uptime_lib = "*"
simplesmbios = { git = "https://github.com/Lyndeno/simplesmbios-rust" }
thiserror = "1.0.60"
[[bin]]
name = "ironfetch"
path = "src/main.rs"
doc = false
[lib]
name = "ironfetch"
path = "src/lib.rs"
[build-dependencies]
clap = { version = "*", features = ["derive"] }
clap_complete = "*"
clap_mangen = "*"
[lints.clippy]
pedantic = {level="warn", priority = 0}
must_use_candidate = "allow"
unwrap_used = {level="warn", priority = 2}
stable_sort_primitive = {level="allow", priority = 1}