-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
88 lines (78 loc) · 2.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
name = "i3stat"
version = "0.13.1"
edition = "2021"
authors = ["acheronfail <[email protected]>"]
description = "A lightweight and batteries-included status_command for i3 and sway"
license = "GPL-3.0-only"
homepage = "https://github.com/acheronfail/i3stat"
repository = "https://github.com/acheronfail/i3stat"
keywords = ["i3", "sway", "status_command", "i3stat", "status"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "i3stat-net"
path = "bin/net.rs"
[[bin]]
name = "i3stat-acpi"
path = "bin/acpi.rs"
[[bin]]
name = "i3stat-ipc"
path = "bin/ipc.rs"
[[bin]]
name = "i3stat-sensors"
path = "bin/sensors.rs"
[[bin]]
name = "i3stat-signals"
path = "bin/signals.rs"
[dependencies]
async-trait = "0.1.80"
bytesize = { version = "1.3.0", features = ["serde"] }
chrono = "0.4.31"
clap = { version = "4.2.7", features = ["derive"] }
dirs = "5.0.1"
figment = { version = "0.10.12", features = ["toml", "yaml", "json"] }
futures = "0.3.29"
hex_color = { version = "3.0.0", features = ["serde"] }
hound = "3.5.1"
humantime-serde = "1.1.1"
indexmap = { version = "2.1.0", features = ["serde"] }
libc = "0.2.149"
libpulse-binding = { version = "2.28.1", features = ["pa_v14"] }
libpulse-tokio = "0.1.0"
log = "0.4.20"
neli = { version = "0.7.0-rc2", features = ["tokio", "async"] }
nix = { version = "0.28.0", features = ["net"] }
num-traits = "0.2.17"
paste = "1.0.14"
pretty_env_logger = "0.5.0"
serde = { version = "1.0.190", features = ["rc"] }
serde_derive = "1.0.190"
serde_json = "1.0.108"
serde_repr = "0.1.17"
signal-hook = "0.3.17"
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
strum = { version = "0.26.2", features = ["derive"] }
sysinfo = { version = "0.30.10", default-features = false }
tokio = { version = "1.33.0", features = ["full"] }
tokio-util = "0.7.10"
wordexp = "0.1.0"
zbus = { version = "4.1.2", default-features = false, features = ["tokio"] }
[[test]]
name = "integration"
path = "tests/mod.rs"
[dev-dependencies]
automod = "1.0.8"
clap_mangen = "0.2.11"
clap = { version = "4.2.7", features = ["derive"] }
fakeroot = "0.4.1"
rand = "0.8.5"
timeout-readwrite = "0.3.3"
xcb = { version = "1.2.1", features = ["xkb", "xtest"] }
x11 = { version = "2.21.0", features = ["xlib"] }
[profile.release]
# Reducing binary size. Read the git commit with this change for detailed savings.
# See: https://github.com/johnthagen/min-sized-rust
strip = true
lto = true
codegen-units = 1
panic = "abort"