lychee/Cargo.toml
Matthias b7ab4abb0d
Make lychee usable as a library #13 (#46)
This splits up the code into a `lib` and a `bin`
to make the runtime usable from other crates.

Co-authored-by: Paweł Romanowski <pawroman@pawroman.dev>
2020-12-04 10:44:31 +01:00

54 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"
keywords = [
"link",
"checker",
"cli",
"link-checker",
"validator",
]
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"
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"
wiremock = "0.3.0"
[dependencies.reqwest]
features = ["gzip"]
version = "0.10"
[dependencies.tokio]
features = ["full"]
version = "0.2"
[dev-dependencies]
assert_cmd = "1.0"
predicates = "1.0"
uuid = { version = "0.8", features = ["v4"] }
tempfile = "3.1"