-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 1007 Bytes
/
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
[package]
name = "rsblocks"
version = "0.1.20"
authors = ["mustafa salih <[email protected]>"]
edition = "2018"
readme = "README.md"
license = "MIT"
keywords = ["linux", "dwm","statusbar"]
repository = "https://github.com/MustafaSalih1993/rsblocks"
description = "a multi threaded status bar for dwm window manager for linux"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
alsa = "0.6.0"
chrono = "0.4"
mpd = "0.0.12"
nix = "0.23.0"
battery = "0.7"
dbus = "0.9"
serde_yaml = "0.9.10"
lazy_static = "1.4.0"
inotify = "0.10.0"
exec = "0.3.1"
# Async deps
futures = "0.3.15"
async-trait = "0.1.50"
[dependencies.async-std]
version = "1.9.0"
features = ["attributes"]
[dependencies.tokio]
version = "1.6.0"
features = ["full"]
[dependencies.serde]
version = "1.0.120"
features = ["derive"]
[dependencies.breadx]
version = "0.2.9"
features = ["async"]
[dependencies.minreq]
version = "2.2"
features = ["https", "json-using-serde"]