corobel/Cargo.toml

25 lines
790 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-11-01 19:50:42 +00:00
version = "0.4.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" ] }
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"
2022-11-02 19:11:40 +00:00
http-cache-reqwest = "0.5.0"
reqwest-middleware = "0.1.6"
cached = "0.40.0"
mime = "0.3.16"
mime_guess = "2.0.4"