[package]
edition = "2024"
name = "synd-protocol"
version = "0.4.0"
authors = ["ymgyt"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared wire protocol contracts 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_protocol"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0.149"
[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"