28 lines
781 B
TOML
28 lines
781 B
TOML
[package]
|
|
name = "icing"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
description = "Simple X11 desktop wallpaper setter"
|
|
authors = ["Candifloss <candifloss.cc>"]
|
|
homepage = "https://git.candifloss.cc/candifloss/icing"
|
|
repository = "https://git.candifloss.cc/candifloss/icing"
|
|
keywords = ["X11", "Xorg", "Wallpaper", "wallpaper-setter"]
|
|
license-file = "LICENSE"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
dirs = "6.0.0"
|
|
image = { version = "0.25.9", default-features = false, features = ["png", "jpeg"] }
|
|
pico-args = "0.5.0"
|
|
serde = { version = "1.0.228", default-features = false, features = ["derive"] }
|
|
toml = "0.9.8"
|
|
x11rb = { version = "0.13.2", default-features = false }
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
strip = "symbols"
|
|
opt-level = "z"
|
|
panic = "abort"
|