lychee/lychee-bin/Cargo.toml
dependabot[bot] d7e7bd6dcb
Bump serde from 1.0.146 to 1.0.147
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.146 to 1.0.147.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.146...v1.0.147)

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

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-24 12:10:47 +00:00

85 lines
2.5 KiB
TOML

[package]
name = "lychee"
authors = ["Matthias Endler <matthias@endler.dev>"]
description = "A glorious 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.1"
[dependencies]
lychee-lib = { path = "../lychee-lib", version = "0.10.1", 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.1"
openssl-sys = "0.9.76"
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.15.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 = "3.2.22"
features = ["env", "derive"]
[dev-dependencies]
assert_cmd = "2.0.5"
predicates = "2.1.1"
tempfile = "3.3.0"
uuid = { version = "1.2.1", 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"]