mirror of
https://github.com/Hopiu/lychee.git
synced 2026-04-17 11:50:59 +00:00
* Bump tabled from 0.5.0 to 0.6.0 Bumps [tabled](https://github.com/zhiburt/tabled) from 0.5.0 to 0.6.0. - [Release notes](https://github.com/zhiburt/tabled/releases) - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.5.0...v0.6.0) --- updated-dependencies: - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * #[field] #[header] in Tabled macro was renamed to #[tabled]. * Fix tabled rename field Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
70 lines
2 KiB
TOML
70 lines
2 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.9.0"
|
|
|
|
[dependencies]
|
|
lychee-lib = { path = "../lychee-lib", version = "0.9.0", default-features = false }
|
|
anyhow = "1.0.56"
|
|
console = "0.15.0"
|
|
const_format = "0.2.22"
|
|
headers = "0.3.7"
|
|
http = "0.2.6"
|
|
indicatif = "0.16.2"
|
|
openssl-sys = "0.9.72"
|
|
pad = "0.1.6"
|
|
regex = "1.5.5"
|
|
reqwest = { version = "0.11.10", 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.133", features = ["derive"] }
|
|
serde_json = "1.0.79"
|
|
structopt = "0.3.26"
|
|
tabled = "0.6.0"
|
|
tokio = { version = "1.16.1", features = ["full"] }
|
|
toml = "0.5.8"
|
|
futures = "0.3.21"
|
|
tokio-stream = "0.1.8"
|
|
once_cell = "1.10.0"
|
|
dashmap = { version = "5.2.0", features = ["serde"] }
|
|
csv = "1.1.6"
|
|
humantime = "2.1.0"
|
|
secrecy = { version = "0.8.0", features = ["serde"] }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0.4"
|
|
predicates = "2.1.1"
|
|
pretty_assertions = "1.1.0"
|
|
tempfile = "3.3.0"
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|
|
wiremock = "0.5.12"
|
|
tracing-subscriber = { version = "0.3.10", 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"]
|