-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 966 Bytes
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 966 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
38
[package]
name = "glamfetch"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
description = "A glamorous system-info fetch tool for the terminal."
license = "MIT"
repository = "https://github.com/synnode/glamfetch"
readme = "README.md"
keywords = ["fetch", "neofetch", "fastfetch", "system-info", "terminal"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
anyhow = "1"
thiserror = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rustix = { version = "1", features = ["system", "fs"] }
unicode-width = "0.2"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
rayon = "1"
figlet-rs = "1"
crossterm = "0.29"
notify = "8"
[dev-dependencies]
insta = "1"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
opt-level = 3