lychee/Cargo.toml

37 lines
798 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"
2020-08-18 21:59:38 +00:00
version = "0.3.0"
2020-08-18 22:09:39 +00:00
[dependencies]
2020-08-13 07:43:06 +00:00
anyhow = "1.0.32"
futures = "0.3"
2020-08-18 22:02:56 +00:00
glob = "0.3"
2020-08-13 07:43:06 +00:00
gumdrop = "0.8.0"
http = "0.2"
hubcaps = "0.6"
2020-08-13 07:43:06 +00:00
linkify = "0.4.0"
log = "0.4"
pretty_env_logger = "0.4"
2020-08-13 07:43:06 +00:00
regex = "1.3.9"
2020-08-07 17:00:21 +00:00
url = "2.1.1"
2020-08-23 21:22:48 +00:00
check-if-email-exists = "0.8.13"
2020-10-10 04:31:28 +00:00
indicatif = "0.15.0"
2020-08-07 17:00:21 +00:00
[dependencies.reqwest]
features = ["gzip"]
version = "0.10"
[dependencies.tokio]
features = ["full"]
version = "0.2"
2020-08-21 22:36:03 +00:00
[dev-dependencies]
wiremock = "0.2.4"