-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (30 loc) · 1.04 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
[package]
name = "cosmic_ext_bg_theme"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "cosmic-ext-bg-theme"
path = "src/main.rs"
[dependencies]
fast_image_resize = { version = "4.0.0", features = ["image"] }
tracing-subscriber = { version = "0.3.18", features = [
"fmt",
"env-filter",
"ansi",
] }
tracing = "0.1.26"
tokio = { version = "1.37", features = ["full"] }
anyhow = "1"
futures = "0.3"
rand = "0.8"
image = "0.25"
zbus = { version = "4.2", default-features = false, features = ["tokio"] }
cosmic-bg-config = { git = "https://github.com/pop-os/cosmic-bg" }
cosmic-config = { git = "https://github.com/pop-os/libcosmic" }
cosmic-theme = { git = "https://github.com/pop-os/libcosmic" }
cosmic-settings-daemon = { git = "https://github.com/pop-os/dbus-settings-bindings" }
kmeans_colors = { version = "0.6", features = ["palette_color"] }
log-panics = { version = "2.1", features = ["with-backtrace"] }
palette = { version = "0.7.3", features = ["serializing"] }
serde = { version = "1.0", features = ["derive"] }
tracing-journald = "0.3.0"