crabidy/rssdy/Cargo.toml

24 lines
743 B
TOML

[package]
name = "rssdy"
version.workspace = true
edition.workspace = true
[dependencies]
async-trait.workspace = true
# Stable across builds, so an episode key stays valid in a saved bookmark
# (architecture/rss-provider.md D4 — `DefaultHasher` explicitly is not).
blake3.workspace = true
crabidy-core.workspace = true
# One parser for RSS 2.0/1.0/0.x, Atom and JSON Feed, with the iTunes
# extensions mapped (D-parser). Podcast feeds in the wild are not uniform.
feed-rs.workspace = true
reqwest.workspace = true
serde.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["time", "sync"] }
toml.workspace = true
tracing.workspace = true
[dev-dependencies]
tokio = { workspace = true, features = ["full"] }