[package]
edition = "2021"
name = "pushkin-daemon"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Warm-path daemon for the pushkin write-gate"
readme = false
license = "MIT"
repository = "https://github.com/acoletti/pushkin"
[lib]
name = "pushkin_daemon"
path = "src/lib.rs"
[[test]]
name = "epoch"
path = "tests/epoch.rs"
[[test]]
name = "ipc"
path = "tests/ipc.rs"
[[test]]
name = "warm"
path = "tests/warm.rs"
[dependencies.notify]
version = "=8.2.0"
[dependencies.pushkin-core]
version = "=0.2.0"
[dependencies.serde]
version = "=1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "=1.0.151"
[dependencies.thiserror]
version = "=2.0.20"
[dependencies.tokio]
version = "=1.53.1"
features = [
"rt-multi-thread",
"net",
"io-util",
"time",
"sync",
"macros",
]
[dev-dependencies.tempfile]
version = "=3.23.0"
[lints.clippy]
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "forbid"