19 lines
386 B
TOML
19 lines
386 B
TOML
[package]
|
|
name = "icing"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[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"
|
|
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" |