Initial commit
Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
commit
215cf639bd
10 changed files with 2071 additions and 0 deletions
22
Cargo.toml
Normal file
22
Cargo.toml
Normal 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"] }
|
||||
Loading…
Add table
Add a link
Reference in a new issue