2016-12-10 17:07:07 +00:00
|
|
|
[package]
|
|
|
|
name = "awesome-rust"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = []
|
2020-01-13 10:12:36 +00:00
|
|
|
homepage = "https://github.com/rust-unofficial/awesome-rust"
|
|
|
|
repository = "https://github.com/rust-unofficial/awesome-rust"
|
2020-01-10 23:07:36 +00:00
|
|
|
edition = "2018"
|
2020-02-24 22:36:50 +00:00
|
|
|
default-run = "awesome-rust"
|
2016-12-10 17:07:07 +00:00
|
|
|
|
2020-06-02 22:01:01 +00:00
|
|
|
# FIXME: locked down versions are a workaround for https://github.com/hyperium/hyper/issues/2191
|
2016-12-10 17:07:07 +00:00
|
|
|
[dependencies]
|
2020-01-10 23:07:36 +00:00
|
|
|
pulldown-cmark = "0.6"
|
2020-06-03 17:05:12 +00:00
|
|
|
futures = "=0.3.5"
|
|
|
|
reqwest = { version="=0.10.4", default_features=false, features=["rustls-tls", "trust-dns"] }
|
|
|
|
tokio = {version = "=0.2.21", features = ["macros", "rt-core", "rt-threaded", "time"] }
|
2020-01-10 23:07:36 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_yaml = "0.8"
|
2020-06-02 22:01:01 +00:00
|
|
|
hyper = "=0.13.5"
|
2020-01-17 23:24:03 +00:00
|
|
|
failure = "0.1"
|
2020-01-11 12:05:30 +00:00
|
|
|
lazy_static = "1"
|
|
|
|
env_logger = "0.7"
|
2020-01-13 22:13:00 +00:00
|
|
|
log = "0.4"
|
2020-01-18 14:01:05 +00:00
|
|
|
regex = "1"
|
2020-02-24 23:41:45 +00:00
|
|
|
scraper = "0.11"
|
2020-03-26 23:29:34 +00:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
chrono-humanize = "0.0.11"
|