corobel/Cargo.toml

20 lines
673 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"
2022-10-30 14:26:34 +00:00
version = "0.1.0"
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 = { version = "2.0.1", features = [ "builders", "atom", "chrono" ] }
pulldown-cmark = "0.9.2"