lychee/lychee-bin/Cargo.toml
dependabot[bot] 8b02e744fd
Bump clap from 4.0.24 to 4.0.25
Bumps [clap](https://github.com/clap-rs/clap) from 4.0.24 to 4.0.25.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.24...v4.0.25)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-16 12:04:43 +00:00

86 lines
2.5 KiB
TOML

[package]
name = "lychee"
authors = ["Matthias Endler <matthias@endler.dev>"]
description = "A fast, async link checker"
documentation = "https://docs.rs/lychee"
homepage = "https://github.com/lycheeverse/lychee"
edition = "2021"
keywords = [
"link",
"checker",
"cli",
"link-checker",
"validator",
]
license = "Apache-2.0/MIT"
repository = "https://github.com/lycheeverse/lychee"
version = "0.10.3"
[dependencies]
lychee-lib = { path = "../lychee-lib", version = "0.10.3", default-features = false }
anyhow = "1.0.66"
console = "0.15.2"
const_format = "0.2.30"
headers = "0.3.8"
http = "0.2.8"
indicatif = "0.17.2"
openssl-sys = "0.9.77"
pad = "0.1.6"
regex = "1.6.0"
reqwest = { version = "0.11.12", features = ["gzip"] }
# 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
ring = "0.16.20"
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.87"
tabled = "0.10.0"
tokio = { version = "1.21.2", features = ["full"] }
toml = "0.5.9"
futures = "0.3.25"
tokio-stream = "0.1.11"
once_cell = "1.16.0"
dashmap = { version = "5.4.0", features = ["serde"] }
csv = "1.1.6"
humantime = "2.1.0"
humantime-serde = "1.1.1"
secrecy = { version = "0.8.0", features = ["serde"] }
supports-color = "1.3.0"
log = "0.4.17"
[dependencies.clap]
version = "4.0.25"
features = ["env", "derive"]
[dev-dependencies]
assert_cmd = "2.0.5"
pretty_assertions = "1.3.0"
predicates = "2.1.3"
tempfile = "3.3.0"
uuid = { version = "1.2.2", features = ["v4"] }
wiremock = "0.5.15"
tracing-subscriber = { version = "0.3.16", default-features = false, features = ["fmt", "registry", "env-filter"] }
# console-subscriber is not yet published to crates.io
# Users have to uncomment this section and the feature below and build lychee
# locally
# TODO: Remove this git revision pin after publication
#[dependencies.console-subscriber]
#optional = true
#git = "https://github.com/tokio-rs/console"
#rev = "926de99ce4cbfd02c87190f9ec5f1c60b5c305d5"
[features]
#tokio-console = ["console-subscriber", "tracing-subscriber/registry"]
vendored-openssl = ["openssl-sys/vendored"]
check_example_domains = ["lychee-lib/check_example_domains"]
# Unfortunately, it's not possible to automatically enable features
# for cargo test. See rust-lang/cargo#2911.
# As a workaround we introduce a new feature to allow example domains
# in integration tests.
[[test]]
name = "cli"
path = "tests/cli.rs"
required-features = ["check_example_domains"]