-
Notifications
You must be signed in to change notification settings - Fork 22
/
Cargo.toml
43 lines (37 loc) · 1.14 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
[package]
name = "cosmic-bg"
version = "0.1.0"
edition = "2021"
[dependencies]
color-eyre = "0.6.3"
colorgrad = { workspace = true }
cosmic-bg-config = { path = "./config" }
dirs = "5.0.1"
eyre = "0.6.12"
fast_image_resize = { version = "4.2.1", features = ["image"] }
image = { workspace = true, features = ["hdr", "jpeg", "png", "rayon", "webp"] }
jxl-oxide = "0.9.0"
notify = "6.1.1"
rand = "0.8"
ron = { workspace = true }
sctk = { package = "smithay-client-toolkit", version = "0.19.2" }
slab = "0.4.9"
tracing = { workspace = true }
tracing-subscriber = "0.3.18"
walkdir = "2.5"
[workspace]
members = ["config"]
[workspace.dependencies]
colorgrad = "0.6.2"
image = { version = "0.25.2", default-features = false }
ron = "0.8"
tracing = "0.1.40"
[dependencies.cosmic-config]
git = "https://github.com/pop-os/libcosmic"
rev = "8c6f2c9ebc5c2c04fe168c2d941f8c5a416b33bb"
features = ["calloop"]
[profile.release]
opt-level = 3
# TODO: Remove when sctk is updated to latest calloop, like cosmic-config
[patch.'https://github.com/pop-os/libcosmic']
cosmic-config = { git = "https://github.com/pop-os//libcosmic", rev = "8c6f2c9ebc5c2c04fe168c2d941f8c5a416b33bb" }