mirror of
https://github.com/Hopiu/lychee.git
synced 2026-04-24 23:14:46 +00:00
This implements a basic builder for the Checker struct as discussed in #12. It is using derive_builder and uses a custom build method to instantiate the more elaborate fields like reqwest::Client. It also adds deadpool and tokio::mpsc as dependencies to handle a pool of clients to query websites.
45 lines
1,008 B
TOML
45 lines
1,008 B
TOML
[package]
|
|
authors = ["Matthias Endler <matthias-endler.de>"]
|
|
description = "A boring link checker for my projects (and maybe yours)"
|
|
documentation = "https://github.com/hello-rust/lychee/blob/master/README.md"
|
|
edition = "2018"
|
|
homepage = "https://github.com/hello-rust/lychee"
|
|
license = "Apache-2.0/MIT"
|
|
name = "lychee"
|
|
repository = "https://github.com/hello-rust/lychee"
|
|
version = "0.3.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.32"
|
|
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.3.9"
|
|
url = "2.1.1"
|
|
check-if-email-exists = "0.8.13"
|
|
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"
|
|
|
|
[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"
|