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"
|
|
|
|
|
version = "0.1.0"
|
2020-08-04 22:32:37 +00:00
|
|
|
[dependencies]
|
2020-08-07 22:06:17 +00:00
|
|
|
any = "*"
|
|
|
|
|
anyhow = "*"
|
2020-08-04 22:32:37 +00:00
|
|
|
github-rs = "0.7.0"
|
2020-08-07 22:06:17 +00:00
|
|
|
log = "0.4"
|
2020-08-04 22:32:37 +00:00
|
|
|
pico-args = "0.3.3"
|
2020-08-07 22:06:17 +00:00
|
|
|
pretty_env_logger = "0.4"
|
2020-08-07 17:00:21 +00:00
|
|
|
pulldown-cmark = "0.7.2"
|
|
|
|
|
regex = "1.3.9"
|
|
|
|
|
serde_json = "1.0.56"
|
|
|
|
|
url = "2.1.1"
|
|
|
|
|
|
|
|
|
|
[dependencies.reqwest]
|
|
|
|
|
features = ["blocking", "gzip"]
|
2020-08-07 22:06:17 +00:00
|
|
|
version = "0.10.7"
|