This repository has been archived by the owner on Jun 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
115 lines (94 loc) · 2.19 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[package]
name = "swaystatus"
version = "0.1.0"
authors = ["Max Verevkin <[email protected]>"]
edition = "2021"
[features]
# Make widgets' borders visible. (for debugging purposes)
debug_borders = []
# console = ["console-subscriber"]
[dependencies]
# console-subscriber = { version = "*", optional = true }
derivative = "2.2"
signal-hook = "0.3"
nix = "0.23"
serde_derive = "1.0"
serde_json = "1.0"
toml = "0.5"
libc = "0.2"
inotify = "0.9"
tokio-stream = "0.1"
async-trait = "0.1"
regex = "1.5"
once_cell = "1"
shellexpand = "2.1"
hyper = "0.14"
sensors = "0.2.2"
# TODO: make optional
maildir = "0.5"
notmuch = "0.7"
crossbeam-channel = "0.5"
libpulse-binding = { version = "2.0", default-features = false }
neli = "0.6"
nl80211 = { git = "https://github.com/MaxVerevkin/nl80211" }
# swayipc-async = { path = "../swayipc-rs/async", default-features = false, features = ["tokio"] }
swayipc-async = "2.0"
# zbus = { path = "../zbus/zbus", default-features = false, features = ["tokio"] }
# zvariant = { path = "../zbus/zvariant" }
# zbus = { git = "https://gitlab.freedesktop.org/dbus/zbus.git" }
# zvariant = { git = "https://gitlab.freedesktop.org/dbus/zbus.git" }
zbus = { version = "2.0", features = ["tokio"]}
zvariant = "3.0"
# TODO: remove
color_space = "0.5"
[dependencies.clap]
version = "3.0"
default-features = false
features = ["std", "derive"]
[dependencies.smallvec]
version = "1.7"
features = ["union", "const_generics"]
[dependencies.smartstring]
version = "0.2"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["rc"]
[dependencies.tokio]
version = "1.12"
features = [
"fs",
#"io-util",
"io-std",
"macros",
#"net",
#"parking_lot",
"process",
"rt",
"rt-multi-thread",
#"signal",
"sync",
"time",
]
[dependencies.futures]
version = "0.3"
default-features = false
[dependencies.chrono]
version = "0.4"
default-features = false
features = ["clock", "unstable-locales"]
[dependencies.chrono-tz]
version = "0.5"
features = ["serde"]
[dependencies.signal-hook-tokio]
version = "0.3"
features = ["futures-v0_3"]
[dependencies.reqwest]
version = "0.11"
features = ["json"]
# Test async code
[dev-dependencies]
tokio-test = "*"
[profile.release]
lto = "thin"
debug = 1