-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
60 lines (54 loc) · 1.57 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
[package]
name = "rwaybar"
version = "0.2.0"
authors = ["Daniel De Graaf <code@danieldg.net>"]
edition = "2021"
default-run = 'rwaybar'
[profile.dev]
# 400ms frames are more annoying than a bit more work on compile
opt-level = 1
panic = 'abort'
[profile.release]
panic = 'abort'
lto = true
[features]
default = ['dbus']
dbus = []
pulse = ['libpulse-binding', 'libpulse-tokio']
[dependencies]
# Basic runtime
bytes = "*"
async-once-cell = "0.5"
env_logger = "0.11"
futures-channel = { version = "*" }
futures-util = { version = "*", features = ['channel'] }
json = "*"
libc = "*"
log = "*"
memmap2 = "0.9"
once_cell = "*"
serde = "1"
strfmt = "=0.2.4"
tokio = { version = "1", features = ['rt', 'net', 'signal', 'sync', 'io-util', 'time'] }
toml = "0.8"
xdg = "*"
xml-rs = "*"
# GUI
png = "0.17"
resvg = { version = "0.40", default-features = false }
smithay-client-toolkit = { version = "0.18.1", default-features = false }
#smithay-client-toolkit = { version = "*", default-features = false, path = "../smithay-client-toolkit" }
tiny-skia = "0.11"
ttf-parser = "*"
wayland-client = { version = "0.31" }
wayland-cursor = { version = "0.31" }
wayland-protocols = { version = "0.31", features = ['unstable', 'staging'] }
wayland-protocols-wlr = { version = "0.2" }
# Module specific
chrono = { version = "*", default-features = false, features = ['clock'] }
chrono-tz = "*"
evalexpr = "11"
libpulse-binding = { version = "*", features = ['pa_v14'], optional = true }
libpulse-tokio = { version = "0.1", optional = true }
regex = "1.5"
zbus = { version = "4", default-features = false, features = ['tokio'] }