diff --git a/Cargo.lock b/Cargo.lock index 04001ea..a90959f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "adler" @@ -445,22 +445,20 @@ dependencies = [ [[package]] name = "deadpool" -version = "0.9.5" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e" +checksum = "883466cb8db62725aee5f4a6011e8a5d42912b42632df32aad57fc91127c6e04" dependencies = [ - "async-trait", "deadpool-runtime", "num_cpus", - "retain_mut", "tokio", ] [[package]] name = "deadpool-runtime" -version = "0.1.2" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1" +checksum = "2657f61fb1dd8bf37a8d51093cc7cee4e77125b22f7753f49b289f831bec2bae" dependencies = [ "tokio", ] @@ -1582,12 +1580,6 @@ dependencies = [ "winreg", ] -[[package]] -name = "retain_mut" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0" - [[package]] name = "ring" version = "0.16.20" diff --git a/droute/Cargo.toml b/droute/Cargo.toml index c3c0e77..c01d5a4 100644 --- a/droute/Cargo.toml +++ b/droute/Cargo.toml @@ -62,7 +62,7 @@ serde = { version = "^1.0", features = ["derive", "rc"] } clru = "^0.6" thiserror = "^1.0" async-trait = "^0.1" -deadpool = { version = "^0.9", features = ["managed", "rt_tokio_1"] } +deadpool = { version = "^0.13", features = ["managed", "rt_tokio_1"] } # (de)compression libs (TODO: can we rewrite it to make it async?) niffler = "^2"