2020-08-04 22:32:37 +00:00
|
|
|
[package]
|
2021-03-04 13:59:48 +00:00
|
|
|
authors = ["Matthias Endler <matthias@endler.dev>"]
|
2020-11-25 09:11:02 +00:00
|
|
|
description = "A glorious link checker"
|
|
|
|
|
documentation = "https://github.com/lycheeverse/lychee/blob/master/README.md"
|
2020-08-07 17:00:21 +00:00
|
|
|
edition = "2018"
|
2020-11-25 09:11:02 +00:00
|
|
|
homepage = "https://github.com/lycheeverse/lychee"
|
2020-12-04 09:44:31 +00:00
|
|
|
keywords = [
|
|
|
|
|
"link",
|
|
|
|
|
"checker",
|
|
|
|
|
"cli",
|
|
|
|
|
"link-checker",
|
|
|
|
|
"validator",
|
|
|
|
|
]
|
2020-08-04 23:09:20 +00:00
|
|
|
license = "Apache-2.0/MIT"
|
2020-08-07 17:00:21 +00:00
|
|
|
name = "lychee"
|
2020-11-25 09:11:02 +00:00
|
|
|
repository = "https://github.com/lycheeverse/lychee"
|
2021-02-17 11:22:39 +00:00
|
|
|
version = "0.6.0"
|
2020-08-18 22:09:39 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[dependencies]
|
2021-01-11 07:10:45 +00:00
|
|
|
anyhow = "1.0.38"
|
2021-04-12 07:16:33 +00:00
|
|
|
futures = "0.3.14"
|
2021-01-06 23:10:58 +00:00
|
|
|
glob = "0.3.0"
|
2021-04-08 07:38:03 +00:00
|
|
|
http = "0.2.4"
|
2021-03-28 20:32:59 +00:00
|
|
|
hubcaps = "0.6.2"
|
2021-04-09 08:56:09 +00:00
|
|
|
linkify = "0.6.0"
|
2021-03-15 10:02:33 +00:00
|
|
|
regex = "1.4.5"
|
2021-02-19 06:55:28 +00:00
|
|
|
url = "2.2.1"
|
2021-04-01 08:43:50 +00:00
|
|
|
check-if-email-exists = "0.8.21"
|
2020-10-10 04:31:28 +00:00
|
|
|
indicatif = "0.15.0"
|
2021-01-06 23:10:58 +00:00
|
|
|
structopt = "0.3.21"
|
2020-12-21 07:18:18 +00:00
|
|
|
toml = "0.5.8"
|
2021-03-28 15:20:03 +00:00
|
|
|
serde = { version = "1.0.124", features = ["derive"] }
|
2020-10-20 23:31:06 +00:00
|
|
|
pulldown-cmark = "0.8.0"
|
2021-02-10 10:58:04 +00:00
|
|
|
html5ever = "0.25.1"
|
|
|
|
|
markup5ever = "0.10.0"
|
|
|
|
|
markup5ever_rcdom = "0.1.0"
|
2021-03-04 11:30:59 +00:00
|
|
|
headers = "0.3.4"
|
2021-04-05 16:38:41 +00:00
|
|
|
derive_builder = "0.10.0"
|
2021-01-04 12:26:07 +00:00
|
|
|
deadpool = "0.7.0"
|
2021-01-06 23:10:58 +00:00
|
|
|
shellexpand = "2.1.0"
|
|
|
|
|
lazy_static = "1.4.0"
|
2021-02-26 00:14:58 +00:00
|
|
|
wiremock = "0.5.1"
|
2021-03-15 10:02:20 +00:00
|
|
|
openssl-sys = "0.9.61"
|
2021-03-01 09:05:08 +00:00
|
|
|
serde_json = "1.0.64"
|
2021-02-12 21:34:41 +00:00
|
|
|
# Make build work on Apple Silicon.
|
|
|
|
|
# See https://github.com/briansmith/ring/issues/1163
|
|
|
|
|
# This is necessary for the homebrew build
|
|
|
|
|
# https://github.com/Homebrew/homebrew-core/pull/70216
|
2021-03-28 15:20:03 +00:00
|
|
|
ring = "0.16.20"
|
2021-02-15 23:15:14 +00:00
|
|
|
pad = "0.1.6"
|
2021-03-15 10:03:16 +00:00
|
|
|
console = "0.14.1"
|
2021-03-14 19:10:36 +00:00
|
|
|
fast_chemail = "0.9.6"
|
2020-08-07 17:00:21 +00:00
|
|
|
|
|
|
|
|
[dependencies.reqwest]
|
2020-08-11 14:13:10 +00:00
|
|
|
features = ["gzip"]
|
2021-03-10 09:19:49 +00:00
|
|
|
version = "0.11.2"
|
2020-08-11 14:13:10 +00:00
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
|
|
|
|
features = ["full"]
|
2021-03-10 09:19:34 +00:00
|
|
|
version = "1.3.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
|
2021-03-28 20:32:59 +00:00
|
|
|
[patch.crates-io]
|
|
|
|
|
# Switch back to version on crates.io after 0.6.3+ is released
|
|
|
|
|
hubcaps = { git="https://github.com/softprops/hubcaps.git" }
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[dev-dependencies]
|
2021-02-02 06:45:53 +00:00
|
|
|
assert_cmd = "1.0.3"
|
2021-02-01 07:17:20 +00:00
|
|
|
predicates = "1.0.7"
|
2021-01-11 07:09:23 +00:00
|
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|
2021-01-12 07:05:18 +00:00
|
|
|
tempfile = "3.2.0"
|
2021-02-18 10:14:00 +00:00
|
|
|
doc-comment = "0.3.3"
|
2021-04-12 12:40:39 +00:00
|
|
|
pretty_assertions = "0.7.1"
|
2020-12-11 21:13:26 +00:00
|
|
|
|
|
|
|
|
[features]
|
2020-12-11 21:58:07 +00:00
|
|
|
vendored-openssl = ["openssl-sys/vendored"]
|