lychee/Cargo.toml
Paweł Romanowski 1f787613d4
Add support for reading from stdin and make input handling more robust (closes #26)
* Adds a `skip_missing` flag
* Adds an `Input` enum to handle different types of inputs
2020-12-02 23:28:37 +01:00

49 lines
1.1 KiB
TOML

[package]
authors = ["Matthias Endler <matthias-endler.de>"]
description = "A glorious link checker"
documentation = "https://github.com/lycheeverse/lychee/blob/master/README.md"
edition = "2018"
homepage = "https://github.com/lycheeverse/lychee"
license = "Apache-2.0/MIT"
name = "lychee"
repository = "https://github.com/lycheeverse/lychee"
version = "0.3.1"
[dependencies]
anyhow = "1.0.34"
futures = "0.3"
glob = "0.3"
http = "0.2"
hubcaps = "0.6"
linkify = "0.4.0"
log = "0.4"
pretty_env_logger = "0.4"
regex = "1.4.2"
url = "2.2.0"
check-if-email-exists = "0.8.15"
indicatif = "0.15.0"
structopt = "0.3"
toml = "0.5.7"
serde = { version = "1.0", features = ["derive"] }
pulldown-cmark = "0.8.0"
quick-xml = "0.20.0"
headers = "0.3.2"
derive_builder = "0.9.0"
deadpool = "0.6.0"
shellexpand = "2.0"
lazy_static = "1.1"
[dependencies.reqwest]
features = ["gzip"]
version = "0.10"
[dependencies.tokio]
features = ["full"]
version = "0.2"
[dev-dependencies]
wiremock = "0.3"
assert_cmd = "1.0"
predicates = "1.0"
uuid = { version = "0.8", features = ["v4"] }
tempfile = "3.1"