[package]
edition = "2024"
name = "synd-runtime"
version = "0.4.0"
authors = ["ymgyt"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime session and singleton daemon lifecycle for syndicationd"
homepage = "https://docs.syndicationd.ymgyt.io/synd-term/"
readme = "README.md"
keywords = [
"feed",
"rss",
"atom",
"tui",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ymgyt/syndicationd"
resolver = "2"
[lib]
name = "synd_runtime"
path = "src/lib.rs"
[[test]]
name = "daemon_session"
path = "tests/daemon_session.rs"
[dependencies.rustix]
version = "1.1.4"
features = [
"fs",
"process",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sha2]
version = "0.10"
[dependencies.synd-api]
version = "=0.4.0"
[dependencies.synd-client]
version = "=0.4.0"
[dependencies.synd-feed]
version = "=0.4.0"
[dependencies.synd-persistence]
version = "=0.4.0"
[dependencies.synd-protocol]
version = "=0.4.0"
[dependencies.synd-registry]
version = "=0.4.0"
[dependencies.synd-support]
version = "=0.4.0"
features = ["humantime"]
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.1"
features = [
"macros",
"net",
"rt",
"time",
]
default-features = false
[dependencies.tracing]
version = "0.1.41"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.52.1"
features = [
"macros",
"rt-multi-thread",
"sync",
]
default-features = false
[dev-dependencies.url]
version = "2.5.8"
[lints.clippy]
cargo_common_metadata = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
negative_feature_names = "warn"
redundant_feature_names = "warn"
wildcard_dependencies = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"