-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
32 lines (29 loc) · 930 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
[package]
name = "zeitfetch"
version = "0.1.13"
edition = "2021"
authors = ["Henrique V (nidnogg)"]
description = "Instantaneous snapshots of cross-platform system information"
license = "MIT"
keywords = ["fetch", "system", "info", "cli", "utils"]
categories = ["command-line-utilities", "os", "rendering", "visualization", "filesystem"]
repository = "https://github.com/nidnogg/zeitfetch"
homepage = "https://github.com/nidnogg/zeitfetch"
readme = "README.md"
[dependencies]
home = "0.5.3"
lazy_static = "1.4.0"
phf = { version = "0.11.2", features = ["macros"] }
prettytable-rs = "^0.10"
regex = "1.7.3"
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
strum = "0.25.0"
strum_macros = "0.25.3"
sysinfo = "0.29.11"
termsize = "0.1.8"
unicode-segmentation = "1.10.1"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["processenv"] }
[dev-dependencies]
rstest = "0.18.2"