Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the dependencies group across 1 directory with 23 updates #1466

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
399 changes: 259 additions & 140 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions examples/builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ path = "builder.rs"

[dependencies]
lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.37.0", features = ["full"] }
regex = "1.10.4"
tokio = { version = "1.38.0", features = ["full"] }
regex = "1.10.5"
http = "1.0.0"
reqwest = { version = "0.12.4", default-features = false, features = ["gzip"] }
reqwest = { version = "0.12.5", default-features = false, features = ["gzip"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
6 changes: 3 additions & 3 deletions examples/chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ name = "chain"
path = "chain.rs"

[dependencies]
async-trait = "0.1.80"
async-trait = "0.1.81"
lychee-lib = { path = "../../lychee-lib", default-features = false }
reqwest = "0.12.4"
tokio = { version = "1.37.0", features = ["full"] }
reqwest = "0.12.5"
tokio = { version = "1.38.0", features = ["full"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
2 changes: 1 addition & 1 deletion examples/client_pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ path = "client_pool.rs"
futures = "0.3.30"
tokio-stream = "0.1.15"
lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.37.0", features = ["full"] }
tokio = { version = "1.38.0", features = ["full"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
6 changes: 3 additions & 3 deletions examples/collect_links/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ path = "collect_links.rs"

[dependencies]
lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.37.0", features = ["full"] }
regex = "1.10.4"
tokio = { version = "1.38.0", features = ["full"] }
regex = "1.10.5"
http = "1.0.0"
tokio-stream = "0.1.15"
reqwest = { version = "0.12.4", default-features = false, features = ["gzip"] }
reqwest = { version = "0.12.5", default-features = false, features = ["gzip"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
2 changes: 1 addition & 1 deletion examples/extract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ path = "extract.rs"

[dependencies]
lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.37.0", features = ["full"] }
tokio = { version = "1.38.0", features = ["full"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ path = "simple.rs"

[dependencies]
lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.37.0", features = ["full"] }
tokio = { version = "1.38.0", features = ["full"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
26 changes: 13 additions & 13 deletions lychee-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,44 +16,44 @@ version.workspace = true
# requires all dependencies to have a version number.
lychee-lib = { path = "../lychee-lib", version = "0.15.1", default-features = false }

anyhow = "1.0.82"
anyhow = "1.0.86"
assert-json-diff = "2.0.2"
clap = { version = "4.5.4", features = ["env", "derive"] }
clap = { version = "4.5.9", features = ["env", "derive"] }
console = "0.15.8"
const_format = "0.2.32"
csv = "1.3.0"
dashmap = { version = "5.5.3", features = ["serde"] }
dashmap = { version = "6.0.1", features = ["serde"] }
env_logger = "0.11.1"
futures = "0.3.30"
headers = "0.4.0"
http = "1.0.0"
humantime = "2.1.0"
humantime-serde = "1.1.1"
indicatif = "0.17.8"
log = "0.4.21"
log = "0.4.22"
once_cell = "1.19.0"
openssl-sys = { version = "0.9.102", optional = true }
pad = "0.1.6"
regex = "1.10.4"
reqwest = { version = "0.12.4", default-features = false, features = [
regex = "1.10.5"
reqwest = { version = "0.12.5", default-features = false, features = [
"gzip",
"json",
] }
reqwest_cookie_store = "0.7.0"
reqwest_cookie_store = "0.8.0"
# 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.17.8"
secrecy = { version = "0.8.0", features = ["serde"] }
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.116"
strum = { version = "0.26.2", features = ["derive"] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
strum = { version = "0.26.3", features = ["derive"] }
supports-color = "3.0.0"
tabled = "0.15.0"
tokio = { version = "1.37.0", features = ["full"] }
tokio = { version = "1.38.0", features = ["full"] }
tokio-stream = "0.1.15"
toml = "0.8.12"
toml = "0.8.14"

[dev-dependencies]
assert_cmd = "2.0.14"
Expand All @@ -65,7 +65,7 @@ tracing-subscriber = { version = "0.3.18", default-features = false, features =
"registry",
"env-filter",
] }
uuid = { version = "1.8.0", features = ["v4"] }
uuid = { version = "1.10.0", features = ["v4"] }
wiremock = "0.6.0"

# console-subscriber is not yet published to crates.io
Expand Down
38 changes: 19 additions & 19 deletions lychee-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,50 +13,50 @@ version.workspace = true

[dependencies]
async-stream = "0.3.5"
async-trait = "0.1.80"
cached = "0.49.3"
async-trait = "0.1.81"
cached = "0.52.0"
check-if-email-exists = { version = "0.9.1", optional = true }
email_address = "0.2.4"
email_address = "0.2.5"
futures = "0.3.30"
glob = "0.3.1"
headers = "0.4.0"
html5ever = "0.27.0"
html5gum = "0.5.7"
http = "1.0.0"
hyper = "1.3.1"
hyper = "1.4.1"
ip_network = "0.4.1"
jwalk = "0.8.1"
linkify = "0.10.0"
log = "0.4.21"
log = "0.4.22"
octocrab = "0.38.0"
once_cell = "1.19.0"
openssl-sys = { version = "0.9.102", optional = true }
path-clean = "1.0.1"
percent-encoding = "2.3.1"
pulldown-cmark = "0.9.6"
regex = "1.10.4"
pulldown-cmark = "0.11.0"
regex = "1.10.5"
# Use trust-dns to avoid lookup failures on high concurrency
# https://github.com/seanmonstar/reqwest/issues/296
reqwest = { version = "0.12.4", default-features = false, features = [
reqwest = { version = "0.12.5", default-features = false, features = [
"gzip",
"trust-dns",
"cookies",
] }
reqwest_cookie_store = "0.7.0"
reqwest_cookie_store = "0.8.0"
# 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.17.8"
secrecy = "0.8.0"
serde = { version = "1.0.198", features = ["derive"] }
serde_with = "3.7.0"
serde = { version = "1.0.204", features = ["derive"] }
serde_with = "3.8.1"
shellexpand = "3.1.0"
thiserror = "1.0.59"
tokio = { version = "1.37.0", features = ["full"] }
toml = "0.8.12"
typed-builder = "0.18.2"
url = { version = "2.5.0", features = ["serde"] }
thiserror = "1.0.62"
tokio = { version = "1.38.0", features = ["full"] }
toml = "0.8.14"
typed-builder = "0.19.1"
url = { version = "2.5.2", features = ["serde"] }

[dependencies.par-stream]
version = "0.10.2"
Expand All @@ -66,9 +66,9 @@ features = ["runtime-tokio"]
doc-comment = "0.3.3"
tempfile = "3.10.1"
wiremock = "0.6.0"
serde_json = "1.0.116"
rstest = "0.19.0"
toml = "0.8.12"
serde_json = "1.0.120"
rstest = "0.21.0"
toml = "0.8.14"

[features]

Expand Down
Loading