Initial commit

Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
Louis Hollingworth 2024-01-13 19:20:56 +00:00
commit 215cf639bd
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
10 changed files with 2071 additions and 0 deletions

22
Cargo.toml Normal file
View file

@ -0,0 +1,22 @@
[package]
name = "blogrss"
version = "0.1.0"
edition = "2021"
[lib]
[[bin]]
name = "blogrss"
[[bin]]
name = "blogrss-server"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atom_syndication = { version = "0.12.2", features = ["with-serde"] }
axum = "0.7.3"
axum-xml = "0.2.0"
rss = { version = "2.0.6", features = ["serde", "atom", "atom_syndication", "chrono", "with-serde"] }
serde = { version = "1.0.195", features = ["derive"] }
tokio = { version = "1.35.1", features = ["full"] }