2016-12-10 12:07:07 -05:00
|
|
|
[package]
|
|
|
|
name = "awesome-rust"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = []
|
2020-01-13 05:12:36 -05:00
|
|
|
homepage = "https://github.com/rust-unofficial/awesome-rust"
|
|
|
|
repository = "https://github.com/rust-unofficial/awesome-rust"
|
2020-01-10 18:07:36 -05:00
|
|
|
edition = "2018"
|
2020-02-24 17:36:50 -05:00
|
|
|
default-run = "awesome-rust"
|
2016-12-10 12:07:07 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2021-05-05 17:21:23 -04:00
|
|
|
pulldown-cmark = "0.8"
|
|
|
|
futures = "0.3"
|
2021-08-10 18:22:48 -04:00
|
|
|
reqwest = { version="0.11", default_features=false, features=["rustls-tls", "json"] }
|
2021-05-05 17:21:23 -04:00
|
|
|
tokio = {version = "1", features = ["macros", "rt", "rt-multi-thread", "time"] }
|
2020-01-10 18:07:36 -05:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_yaml = "0.8"
|
2021-05-05 17:21:23 -04:00
|
|
|
hyper = "0.14"
|
2020-01-17 18:24:03 -05:00
|
|
|
failure = "0.1"
|
2020-01-11 07:05:30 -05:00
|
|
|
lazy_static = "1"
|
2021-05-05 17:21:23 -04:00
|
|
|
env_logger = "0.8"
|
2020-01-13 17:13:00 -05:00
|
|
|
log = "0.4"
|
2020-01-18 09:01:05 -05:00
|
|
|
regex = "1"
|
2020-02-24 18:41:45 -05:00
|
|
|
scraper = "0.11"
|
2020-03-26 19:29:34 -04:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2021-07-25 15:44:10 -04:00
|
|
|
chrono-humanize = "0.2"
|
2021-08-08 14:52:32 -04:00
|
|
|
diffy = "0.2"
|
2021-08-10 19:07:54 -04:00
|
|
|
serde_json = "*"
|