diff --git a/Cargo.lock b/Cargo.lock index d236859f..a85428f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -528,6 +528,18 @@ dependencies = [ "tokio", ] +[[package]] +name = "bb8" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "457d7ed3f888dfd2c7af56d4975cade43c622f74bdcddfed6d4352f57acc6310" +dependencies = [ + "futures-util", + "parking_lot 0.12.5", + "portable-atomic", + "tokio", +] + [[package]] name = "bigdecimal" version = "0.3.1" @@ -1614,7 +1626,7 @@ dependencies = [ "async-recursion", "async-trait", "axum", - "bb8", + "bb8 0.9.1", "bincode", "cached", "chrono", @@ -3792,6 +3804,12 @@ dependencies = [ "windows-sys 0.59.0", ] +[[package]] +name = "portable-atomic" +version = "1.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" + [[package]] name = "potential_utf" version = "0.1.2" @@ -5207,7 +5225,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ad7801f368596253646e42e1a11360431d115ab576fffa26e5da08e6ddb9d8d" dependencies = [ "async-trait", - "bb8", + "bb8 0.8.6", "itoa", "native-tls", "r2d2", diff --git a/Cargo.toml b/Cargo.toml index 642cbbdb..d63c4221 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ axum = "0.8.8" async-recursion = "1.1.1" async-trait = "0.1.89" bincode = { version = "2.0.1", features = ["serde"] } -bb8 = { version = "0.8.5" } +bb8 = { version = "0.9.0" } cached = { version = "0.58.0", features = ["async", "proc_macro"] } chrono = { version = "0.4.44", features = ["serde"] } dashmap = { version = "6.1.0", features = ["rayon"] }