-
Notifications
You must be signed in to change notification settings - Fork 51
/
Cargo.toml
44 lines (40 loc) · 1.2 KB
/
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
39
40
41
42
43
44
[package]
name = "macchina"
version = "6.4.0"
authors = ["Aziz Ben Ali <ba.tahaaziz@gmail.com>", "Marvin Haschker <marvin@haschker.me>", "Uttarayan Mondal <email@uttarayan.me>"]
edition = "2021"
description = "A system information fetcher with an emphasis on performance."
keywords = ["system", "fetch", "cli"]
repository = "https://github.com/Macchina-CLI/macchina"
license = "MIT"
readme = "README.md"
build = "build.rs"
[dependencies]
libmacchina = { version = "8.0.0", features = ["version"] }
bytesize = "1.3.0"
shellexpand = "3.1.0"
clap = { version = "4.4.6", features = ["derive"] }
atty= "0.2.14"
colored = "2.0.4"
rand = "0.8.5"
unicode-width = "0.1.11"
lazy_static = "1.4.0"
ansi-to-tui = "7.0.0"
dirs = "5.0.1"
toml = { version = "0.8.8", features = ["parse"] }
serde_json = "1.0.107"
thiserror = "1.0.49"
ratatui = { version = "0.29", default-features = false, features = ["crossterm", "serde"] }
serde = { version = "1.0.188", features = ["derive"] }
[build-dependencies.vergen]
version = "8.2.6"
default-features = false
features = ["build", "cargo", "git", "rustc"]
[profile.release]
opt-level = 3
debug = false
lto = true
incremental = true
codegen-units = 1
[features]
openwrt = ["libmacchina/openwrt"]