Skip to content

Commit 11848a9

Browse files
committed
v0.31.3
1 parent eeeba6a commit 11848a9

File tree

1 file changed

+9
-32
lines changed

1 file changed

+9
-32
lines changed

Cargo.toml

Lines changed: 9 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A feature-rich and resource-friendly replacement for i3status, wr
44
repository = "https://github.com/greshake/i3status-rust/"
55
readme = "README.md"
66
license = "GPL-3.0-only"
7-
version = "0.31.2"
7+
version = "0.31.3"
88
authors = [
99
"Kai Greshake <[email protected]>",
1010
"Contributors on GitHub (https://github.com/greshake/i3status-rust/graphs/contributors)",
@@ -27,9 +27,13 @@ rustdoc-args = ["--cfg", "docsrs"]
2727
async-once-cell = "0.5"
2828
async-trait = "0.1"
2929
calibright = { version = "0.1", features = ["watch"] }
30+
chrono = { version = "0.4", default-features = false, features = ["clock", "unstable-locales"] }
31+
chrono-tz = { version = "0.8", features = ["serde"] }
32+
clap = { version = "4.0", default-features = false, features = ["std", "derive", "help", "usage"] }
3033
crossbeam-channel = "0.5"
3134
dirs = "5.0"
3235
env_logger = "0.10"
36+
futures = { version = "0.3", default-features = false }
3337
hyper = "0.14"
3438
inotify = "0.10"
3539
libc = "0.2"
@@ -43,26 +47,20 @@ nom = "7.1.2"
4347
notmuch = { version = "0.8", optional = true }
4448
once_cell = "1"
4549
regex = "1.5"
50+
reqwest = { version = "0.11", features = ["json"] }
4651
sensors = "0.2.2"
52+
serde = { version = "1.0", features = ["derive", "rc"] }
4753
serde_json = "1.0"
4854
serde_with = "3.0"
4955
shellexpand = "3.0"
5056
signal-hook = "0.3"
57+
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
5158
smart-default = "0.7"
5259
swayipc-async = "2.0"
5360
toml = "0.7"
54-
zbus = { version = "3.8", default-features = false, features = ["tokio"] }
5561
wayrs-client = { version = "0.10", features = ["tokio"] }
5662
wayrs-protocols = { version = "0.10", features = ["wlr-foreign-toplevel-management-unstable-v1"] }
57-
58-
[dependencies.clap]
59-
version = "4.0"
60-
default-features = false
61-
features = ["std", "derive", "help", "usage"]
62-
63-
[dependencies.serde]
64-
version = "1.0"
65-
features = ["derive", "rc"]
63+
zbus = { version = "3.8", default-features = false, features = ["tokio"] }
6664

6765
[dependencies.tokio]
6866
version = "1.12"
@@ -81,27 +79,6 @@ features = [
8179
"time",
8280
]
8381

84-
[dependencies.futures]
85-
version = "0.3"
86-
default-features = false
87-
88-
[dependencies.chrono]
89-
version = "0.4"
90-
default-features = false
91-
features = ["clock", "unstable-locales"]
92-
93-
[dependencies.chrono-tz]
94-
version = "0.8"
95-
features = ["serde"]
96-
97-
[dependencies.signal-hook-tokio]
98-
version = "0.3"
99-
features = ["futures-v0_3"]
100-
101-
[dependencies.reqwest]
102-
version = "0.11"
103-
features = ["json"]
104-
10582
[profile.release]
10683
lto = "thin"
10784

0 commit comments

Comments
 (0)