lychee/Cargo.toml

26 lines
658 B
TOML
Raw Normal View History

[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"
[dependencies]
any = "*"
anyhow = "*"
github-rs = "0.7.0"
log = "0.4"
pico-args = "0.3.3"
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"]
version = "0.10.7"