-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (36 loc) · 1002 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
[package]
name = "bar-rs"
version = "0.1.0"
edition = "2021"
[dependencies]
chrono = "0.4.39"
configparser = "3.1.0"
ctrlc = "3.4.5"
directories = "5.0.1"
hyprland = { git = "https://github.com/hyprland-community/hyprland-rs", branch = "master" }
#iced = { git = "https://github.com/pop-os/iced.git", branch = "master", features = [
# "tokio",
# "wayland",
# "winit"
#] }
iced = { git = "https://github.com/Faervan/iced_pop-os.git", branch = "master", features = [
"tokio",
"wayland",
"winit",
"image"
] }
notify = "7.0.0"
system-tray = "0.5.0"
tokio = { version = "1.42.0", features = ["io-util", "macros", "process", "sync"] }
udev = { version = "0.9.1", features = ["mio"] }
bar-rs_derive = { path = "crates/bar-rs_derive"}
downcast-rs = "1.2.1"
csscolorparser = "0.7.0"
wayfire-rs = "0.2.2"
serde_json = "1.0.135"
niri-ipc = "=0.1.10"
handlebars = "6.3.0"
serde = { version = "1.0.217", features = ["derive"] }
reqwest = "0.12.12"
[profile.dev.package."*"]
opt-level = 3