stutter-daemon 0.3.2

Focus-aware process priority daemon
[package]
name = "stutter-daemon"
version = "0.3.2"
edition = "2024"
authors = ["Kleshzz"]
description = "Focus-aware process priority daemon"
keywords = ["wayland", "compositor", "daemon", "priority", "nice"]
categories = ["os", "command-line-utilities"]
exclude = [".github", "pkg/", "docs/"]
license = "MIT"
repository = "https://github.com/Kleshzz/stutter"
rust-version = "1.85.0"
homepage = "https://github.com/Kleshzz/stutter"
readme = "docs/README.md"

[dependencies]
tokio = { version = "1", features = ["rt", "macros", "io-util", "net", "signal", "time"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
libc = "0.2"
thiserror = "2"
toml = "1.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

[[bin]]
name = "stutter"
path = "src/main.rs"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"
overflow-checks = false

[lints.rust]
unsafe_code = "warn"
missing_debug_implementations = "warn"

[lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }

missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
too_many_lines = "allow"

unwrap_used = "warn"
expect_used = "warn"
cloned_instead_of_copied = "warn"
mut_mut = "warn"