Allows settings to show installed wallpapers. - Modified `load_each_from_path` to recursively discover wallpapers, limited depth to 3 for performance.
26 lines
830 B
TOML
26 lines
830 B
TOML
[package]
|
|
name = "cosmic-settings-wallpaper"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cosmic-bg-config = { workspace = true }
|
|
cosmic-config = { workspace = true }
|
|
cosmic-randr-shell = { workspace = true }
|
|
dirs = "5.0.1"
|
|
eyre = "0.6.12"
|
|
# Upstream version 5.0.0 has compilation error on Redox's toolchain
|
|
fast_image_resize = { git = "https://github.com/jackpot51/fast_image_resize.git", features = [
|
|
"image",
|
|
] }
|
|
freedesktop-icons = { package = "cosmic-freedesktop-icons", git = "https://github.com/pop-os/freedesktop-icons" }
|
|
futures-lite = "2.6.0"
|
|
futures-util = "0.3.31"
|
|
image = "0.25.5"
|
|
infer = "0.16.0"
|
|
jxl-oxide = "0.11.3"
|
|
tokio = { version = "1.44.1", features = ["sync"] }
|
|
tracing = "0.1.41"
|
|
walkdir = "=2.5.0"
|