Strata/strata-daemon/Cargo.toml
Eduard Tolosa ffa1a407fe chore: bump versions to 0.7.0
Cut the 0.7.0 release (D-Bus rename + theme-recursion fix): daemon
Cargo.toml to 0.7.0, refresh Cargo.lock (gif/half/log patch bumps + version),
extension metadata.json version to 7, and add the [0.7.0] CHANGELOG entry.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-26 19:20:18 -05:00

53 lines
1.5 KiB
TOML

[package]
name = "strata-daemon"
version = "0.7.0"
edition = "2021"
description = "Strata clipboard manager backend daemon"
[[bin]]
name = "strata-daemon"
path = "src/main.rs"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# D-Bus (async, tokio-native)
zbus = { version = "4", features = ["tokio"] }
# Wayland clipboard monitoring (custom event loop)
wayland-client = "0.31"
wayland-protocols = { version = "0.32", features = ["client", "staging"] }
wayland-protocols-wlr = { version = "0.3", features = ["client"] }
# Clipboard read / write (paste::get_contents + copy::copy_multi)
# Supports ext-data-control-v1 (GNOME 47+) and zwlr-data-control-v1 fallback
wl-clipboard-rs = "0.9"
# Storage
rusqlite = { version = "0.31", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4"] }
# Image thumbnail generation (runs in spawn_blocking — never blocks async runtime)
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "gif", "webp", "bmp", "tiff", "ico"] }
# Fast content hashing for deduplication
blake3 = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
# XDG paths
dirs = "5"
# Error handling
anyhow = "1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true