corobel/Cargo.toml

21 lines
732 B
TOML
Raw Normal View History

2022-10-30 14:26:34 +00:00
[package]
2022-11-01 01:57:20 +00:00
name = "corobel"
version = "0.2.0"
2022-10-30 14:26:34 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.0.18", features = [ "derive" ] }
eggbug = { version = "0.1.2", features = [ "tokio" ] }
2022-10-30 17:36:09 +00:00
reqwest = "0.11.12"
rocket = { version = "0.5.0-rc.2", features = [ "json" ] }
serde = { version = "1.0.147", features = [ "derive" ] }
tokio = { version = "1.21.2", features = [ "full" ] }
serde_json = "1.0.87"
once_cell = "1.16.0"
2022-11-01 01:57:20 +00:00
chrono = { version = "0.4.22", features = [ "serde" ] }
rss = { path = "./rss/", version = "2.0.1-atom-link-fix", features = [ "builders", "atom", "chrono" ] }
2022-11-01 01:57:20 +00:00
pulldown-cmark = "0.9.2"
2022-11-01 02:41:07 +00:00
atom_syndication = "0.11.0"