From cfd2f6dc070913fbdad125a7eebf0c1f43fe63d7 Mon Sep 17 00:00:00 2001 From: Nico Vanelslande Date: Thu, 5 Oct 2023 15:50:47 +0100 Subject: [PATCH] Use the postgresml bb8 fork while waiting on https://github.com/djc/bb8/pull/164 to ship --- Cargo.lock | 3 +-- Cargo.toml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ec849329..1d22dd6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -170,8 +170,7 @@ checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" [[package]] name = "bb8" version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98b4b0f25f18bcdc3ac72bdb486ed0acf7e185221fd4dc985bc15db5800b0ba2" +source = "git+https://github.com/postgresml/bb8?rev=6971f9565dac43de9f608a9d9379c19507f56c00#6971f9565dac43de9f608a9d9379c19507f56c00" dependencies = [ "async-trait", "futures-channel", diff --git a/Cargo.toml b/Cargo.toml index c3db48aa..b5c28bbd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" tokio = { version = "1", features = ["full"] } bytes = "1" md-5 = "0.10" -bb8 = "0.8.1" +bb8 = { git = "https://github.com/postgresml/bb8", rev = "6971f9565dac43de9f608a9d9379c19507f56c00" } async-trait = "0.1" rand = "0.8" chrono = "0.4" @@ -51,4 +51,3 @@ tracing-subscriber = { version = "0.3.17", features = ["json", "env-filter", "st [target.'cfg(not(target_env = "msvc"))'.dependencies] jemallocator = "0.5.0" -