Bump the dependencies group with 3 updates (#1604)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2025-01-06 14:07:53 +01:00 committed by GitHub
parent a94a71261e
commit a11d51549b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 15 additions and 14 deletions

19
Cargo.lock generated
View file

@ -408,9 +408,9 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
[[package]]
name = "async-trait"
version = "0.1.83"
version = "0.1.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
checksum = "1b1244b10dcd56c92219da4e14caa97e312079e185f04ba3eea25061561dc0a0"
dependencies = [
"proc-macro2",
"quote",
@ -3577,21 +3577,21 @@ dependencies = [
[[package]]
name = "rstest"
version = "0.23.0"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035"
checksum = "03e905296805ab93e13c1ec3a03f4b6c4f35e9498a3d5fa96dc626d22c03cd89"
dependencies = [
"futures",
"futures-timer",
"futures-util",
"rstest_macros",
"rustc_version",
]
[[package]]
name = "rstest_macros"
version = "0.23.0"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "825ea780781b15345a146be27eaefb05085e337e869bff01b4306a4fd4a9ad5a"
checksum = "ef0053bbffce09062bee4bcc499b0fbe7a57b879f1efe088d6d8d4c7adcdef9b"
dependencies = [
"cfg-if",
"glob",
@ -4216,12 +4216,13 @@ dependencies = [
[[package]]
name = "tempfile"
version = "3.14.0"
version = "3.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
dependencies = [
"cfg-if",
"fastrand",
"getrandom",
"once_cell",
"rustix",
"windows-sys 0.59.0",

View file

@ -8,7 +8,7 @@ name = "chain"
path = "chain.rs"
[dependencies]
async-trait = "0.1.83"
async-trait = "0.1.84"
lychee-lib = { path = "../../lychee-lib", default-features = false }
reqwest = "0.12.9"
tokio = { version = "1.42.0", features = ["full"] }

View file

@ -61,7 +61,7 @@ assert_cmd = "2.0.16"
cookie_store = "0.21.1"
predicates = "3.1.3"
pretty_assertions = "1.4.1"
tempfile = "3.14.0"
tempfile = "3.15.0"
tracing-subscriber = { version = "0.3.19", default-features = false, features = [
"fmt",
"registry",

View file

@ -13,7 +13,7 @@ version.workspace = true
[dependencies]
async-stream = "0.3.6"
async-trait = "0.1.83"
async-trait = "0.1.84"
cached = "0.54.0"
check-if-email-exists = { version = "0.9.1", optional = true }
cookie_store = "0.21.1"
@ -65,10 +65,10 @@ features = ["runtime-tokio"]
[dev-dependencies]
doc-comment = "0.3.3"
tempfile = "3.14.0"
tempfile = "3.15.0"
wiremock = "0.6.2"
serde_json = "1.0.134"
rstest = "0.23.0"
rstest = "0.24.0"
toml = "0.8.19"
pretty_assertions = "1.4.0"