implement an Atom RSS feed

This commit is contained in:
2023-11-29 13:30:51 -05:00
parent 5e5be16ee0
commit 9d497f0aaf
3 changed files with 58 additions and 7 deletions

View File

@@ -4,9 +4,11 @@ version = "0.1.0"
edition = "2021"
[dependencies]
atom_syndication = "0.12.2"
axum = { version = "0.7.1", default-features = false, features = ["json", "tokio", "http2"] }
atom_syndication = { version = "0.12.2" }
axum = { version = "0.7.1", default-features = false, features = ["json", "tokio", "http2", "http1"] }
bytes = "1.5.0"
error-stack = "0.4.1"
mime = "0.3.17"
redb = "1.4.0"
serde = { version = "1.0.193", features = ["derive"] }
thiserror = "1.0.50"