lychee/lychee-bin/Cargo.toml
dependabot[bot] fa920d24b8
Bump assert_cmd from 1.0.4 to 2.0.1 (#314)
Bumps [assert_cmd](https://github.com/assert-rs/assert_cmd) from 1.0.4 to 2.0.1.
- [Release notes](https://github.com/assert-rs/assert_cmd/releases)
- [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md)
- [Commits](https://github.com/assert-rs/assert_cmd/compare/v1.0.4...v2.0.1)

---
updated-dependencies:
- dependency-name: assert_cmd
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-08 00:37:21 +02:00

51 lines
1.3 KiB
TOML

[package]
name = "lychee"
authors = ["Matthias Endler <matthias@endler.dev>"]
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"
repository = "https://github.com/lycheeverse/lychee"
version = "0.7.2"
[dependencies]
lychee-lib = { path = "../lychee-lib", version = "0.7.2" }
anyhow = "1.0.40"
console = "0.14.1"
headers = "0.3.4"
http = "0.2.4"
indicatif = "0.15.0"
lazy_static = "1.4.0"
openssl-sys = "0.9.63"
pad = "0.1.6"
regex = "1.4.6"
reqwest = { version = "0.11.3", 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.125", features = ["derive"] }
serde_json = "1.0.67"
structopt = "0.3.21"
tokio = { version = "1.6.0", features = ["full"] }
toml = "0.5.8"
[dev-dependencies]
assert_cmd = "2.0.1"
predicates = "1.0.8"
pretty_assertions = "0.7.2"
tempfile = "3.2.0"
uuid = { version = "0.8.2", features = ["v4"] }
wiremock = "0.5.7"
[features]
vendored-openssl = ["openssl-sys/vendored"]