diff --git a/Cargo.lock b/Cargo.lock index be7482b..e6f4787 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -606,17 +606,6 @@ dependencies = [ "cache-padded", ] -[[package]] -name = "config" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19b076e143e1d9538dde65da30f8481c2a6c44040edb8e02b9bf1351edb92ce3" -dependencies = [ - "lazy_static", - "nom", - "serde", -] - [[package]] name = "console" version = "0.15.0" @@ -887,18 +876,22 @@ checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57" [[package]] name = "deadpool" -version = "0.7.0" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d126179d86aee4556e54f5f3c6bf6d9884e7cc52cef82f77ee6f90a7747616d" +checksum = "3bf0c5365c0925c80a838a6810a1bf38d3304ca6b4eb25829e29e33da12de786" dependencies = [ "async-trait", - "config", - "crossbeam-queue", + "deadpool-runtime", "num_cpus", - "serde", "tokio", ] +[[package]] +name = "deadpool-runtime" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1" + [[package]] name = "derivative" version = "2.2.0" @@ -3771,9 +3764,9 @@ dependencies = [ [[package]] name = "wiremock" -version = "0.5.10" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70f7b70ff8dc8f85e456feb581ee05720f87a5bd4f868c018191d997994cabed" +checksum = "359a3231e905044f3993eb5f85dbc99f8b88e078c376f0f2c7bd2d7d729301da" dependencies = [ "assert-json-diff", "async-trait", diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index d793c24..9d18f64 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -53,7 +53,7 @@ predicates = "2.1.1" pretty_assertions = "1.1.0" tempfile = "3.3.0" uuid = { version = "0.8.2", features = ["v4"] } -wiremock = "0.5.10" +wiremock = "0.5.11" tracing-subscriber = { version = "0.3.9", default-features = false, features = ["fmt", "registry", "env-filter"] } # console-subscriber is not yet published to crates.io diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index 8bc1b1f..34b8796 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -62,7 +62,7 @@ features = ["runtime-tokio"] doc-comment = "0.3.3" pretty_assertions = "1.1.0" tempfile = "3.3.0" -wiremock = "0.5.10" +wiremock = "0.5.11" [features] vendored-openssl = ["openssl-sys/vendored"]