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