-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 1.03 KB
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
[package]
name = "chwd"
version = "1.21.0"
authors = ["Vladislav Nepogodin <nepogodin.vlad@gmail.com>"]
license = "GPL-3.0-only"
edition = "2021"
[dependencies]
toml = "1.1"
libpci = { path = "libpci", version = "0.1.3" }
libusb = { path = "libusb", version = "0.1.0", features = ["std", "usb-ids"] }
subprocess = "1.0"
colored = "3"
log = "0.4"
clap = { features = ["derive"], version = "4" }
anyhow = "1"
nix = { features = ["user"], default-features = false, version = "0.31" }
comfy-table = { default-features = false, version = "7" }
regex = "1.12"
once_cell = { features = ["std"], default-features = false, version = "1" }
i18n-embed = { version = "0.16", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.10"
rust-embed = { version = "8", features = ["debug-embed", "include-exclude"] }
glob = "0.3"
[build-dependencies]
clap = { features = ["derive"], version = "4" }
clap_complete = "4"
[profile.release]
strip = "symbols"
panic = "abort"
lto = true
opt-level = 3
codegen-units = 1
[lib]
name = "chwd"
path = "src/lib.rs"