-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (40 loc) · 1.25 KB
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
[package]
name = "glowberry"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
description = "Enhanced background/wallpaper service with live shader support"
license.workspace = true
[dependencies]
clap = { version = "4", features = ["derive"] }
color-eyre = "0.6.5"
colorgrad = { workspace = true }
glowberry-config = { path = "./config" }
glowberry-lib = { workspace = true }
eyre = "0.6.12"
fast_image_resize = { version = "6.0.0", features = ["image"] }
image = { workspace = true, features = ["hdr", "jpeg", "png", "rayon", "webp"] }
jxl-oxide = { version = "0.12.4", features = ["image"] }
notify = "8.2.0"
rand = "0.10"
sctk = { package = "smithay-client-toolkit", version = "0.20.0" }
tracing = { workspace = true }
tracing-subscriber = "0.3.20"
walkdir = "2.5"
[workspace]
members = ["config", "crates/glowberry-lib", "apps/glowberry-settings"]
[workspace.package]
version = "0.4.0"
edition = "2024"
rust-version = "1.93"
license = "MPL-2.0"
[workspace.dependencies]
colorgrad = "0.8 "
glowberry-lib = { path = "crates/glowberry-lib" }
image = { version = "0.25.6", default-features = false }
tracing = "0.1.41"
[dependencies.cosmic-config]
git = "https://github.com/pop-os/libcosmic"
features = ["calloop"]
[profile.release]
opt-level = 3