rust/Cargo.toml

28 lines
740 B
TOML
Raw Permalink Normal View History

[package]
name = "awesome-rust"
version = "0.1.0"
authors = []
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"
default-run = "awesome-rust"
[dependencies]
2021-05-05 21:21:23 +00:00
pulldown-cmark = "0.8"
futures = "0.3"
2021-08-10 22:22:48 +00:00
reqwest = { version="0.11", default_features=false, features=["rustls-tls", "json"] }
2021-05-05 21:21:23 +00:00
tokio = {version = "1", features = ["macros", "rt", "rt-multi-thread", "time"] }
2020-01-10 23:07:36 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
2021-05-05 21:21:23 +00:00
hyper = "0.14"
failure = "0.1"
lazy_static = "1"
2021-05-05 21:21:23 +00:00
env_logger = "0.8"
2020-01-13 22:13:00 +00:00
log = "0.4"
regex = "1"
scraper = "0.12"
chrono = { version = "0.4", features = ["serde"] }
chrono-humanize = "0.2"
2022-09-17 16:06:38 +00:00
diffy = "0.3"
2021-08-10 23:07:54 +00:00
serde_json = "*"