[package]
name = "wallswitch"
description = "randomly selects wallpapers for multiple monitors"
authors = ["Claudio F S Rodrigues <claudiofsrodrigues@gmail.com>"]
version = "0.56.2"
repository = "https://github.com/claudiofsr/wallswitch"
homepage = "https://github.com/claudiofsr/wallswitch"
documentation = "https://docs.rs/wallswitch"
license = "BSD-3-Clause"
readme = "README.md"
edition = "2024"
rust-version = "1.95"
categories = ["command-line-utilities"]
keywords = [
"wallpaper",
"desktop",
"random",
"images",
"switch",
]
[dependencies]
blake3 = "1.8"
clap = { version = "4.6", features = ["derive", "color"] }
clap_complete = "4.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
walkdir = "2.5"
[lints.rust]
unsafe_code = "forbid"
[profile.release]
debug = true
strip = "symbols"
opt-level = 3
overflow-checks = true
lto = true
codegen-units = 1
panic = "abort"
incremental = true
[profile.dev]
opt-level = 1