2020-08-04 22:32:37 +00:00
|
|
|
[package]
|
|
|
|
|
authors = ["Matthias Endler <matthias-endler.de>"]
|
2020-08-04 23:09:20 +00:00
|
|
|
description = "A boring link checker for my projects (and maybe yours)"
|
|
|
|
|
documentation = "https://github.com/hello-rust/lychee/blob/master/README.md"
|
2020-08-07 17:00:21 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
homepage = "https://github.com/hello-rust/lychee"
|
2020-08-04 23:09:20 +00:00
|
|
|
license = "Apache-2.0/MIT"
|
2020-08-07 17:00:21 +00:00
|
|
|
name = "lychee"
|
|
|
|
|
repository = "https://github.com/hello-rust/lychee"
|
2020-08-12 22:17:42 +00:00
|
|
|
version = "0.2.0"
|
2020-08-04 22:32:37 +00:00
|
|
|
[dependencies]
|
2020-08-13 07:43:06 +00:00
|
|
|
anyhow = "1.0.32"
|
2020-08-11 14:13:10 +00:00
|
|
|
futures = "0.3"
|
2020-08-04 22:32:37 +00:00
|
|
|
github-rs = "0.7.0"
|
2020-08-14 00:33:04 +00:00
|
|
|
glob = "*"
|
2020-08-13 07:43:06 +00:00
|
|
|
gumdrop = "0.8.0"
|
|
|
|
|
http = "0.1.21"
|
|
|
|
|
linkify = "0.4.0"
|
2020-08-07 22:06:17 +00:00
|
|
|
log = "0.4"
|
|
|
|
|
pretty_env_logger = "0.4"
|
2020-08-07 17:00:21 +00:00
|
|
|
pulldown-cmark = "0.7.2"
|
2020-08-13 07:43:06 +00:00
|
|
|
regex = "1.3.9"
|
2020-08-07 17:00:21 +00:00
|
|
|
serde_json = "1.0.56"
|
|
|
|
|
url = "2.1.1"
|
|
|
|
|
|
|
|
|
|
[dependencies.reqwest]
|
2020-08-11 14:13:10 +00:00
|
|
|
features = ["gzip"]
|
|
|
|
|
version = "0.10"
|
|
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
|
|
|
|
features = ["full"]
|
|
|
|
|
version = "0.2"
|