wallr 0.3.2

The wallpaper engine for Wayland — animated transitions, theme pipeline integration, and a package ecosystem.
[package]
name = "wallr"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description.workspace = true
readme = "../README.md"
homepage.workspace = true
categories.workspace = true
keywords.workspace = true
rust-version.workspace = true
default-run = "wallr"

[[bin]]
name = "wallr"
path = "src/main.rs"
bench = false  # Disable benchmarks for faster builds

[features]
default = []
static-ffmpeg = ["wallr-core/static-ffmpeg"]

[dependencies]
# Core library
wallr-core.workspace = true

# Error handling
anyhow.workspace = true

# CLI
clap.workspace = true
colored.workspace = true

# Async runtime
tokio.workspace = true

# Logging
tracing.workspace = true
tracing-subscriber.workspace = true

# Serialization
serde_yaml.workspace = true

# Utilities
humansize.workspace = true