From 2aeb22fa4b387454ea35e76fda04ce90ea0186e3 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 5 Mar 2021 07:26:56 +0000 Subject: [PATCH] Bump mobc from 0.5.12 to 0.7.0 Bumps [mobc](https://github.com/importcjj/mobc) from 0.5.12 to 0.7.0. - [Release notes](https://github.com/importcjj/mobc/releases) - [Changelog](https://github.com/importcjj/mobc/blob/master/CHANGELOG.md) - [Commits](https://github.com/importcjj/mobc/commits) Signed-off-by: dependabot-preview[bot] --- Cargo.lock | 49 +++++++++++++++++++++++++++++++-------------- oxidizer/Cargo.toml | 2 +- 2 files changed, 35 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1c772cf..0d7c111 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -536,15 +536,17 @@ dependencies = [ [[package]] name = "mobc" -version = "0.5.12" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6813d7da9f2399927e4f83d741165869376b5b3b7d9a09945713b48ce4241cf" +checksum = "4aa3b9ceb9719088450638d86cbd1df968f78aa72c2c0076758b47ef59d48fb4" dependencies = [ "async-trait", - "futures", + "futures-channel", + "futures-core", "futures-timer", + "futures-util", "log", - "tokio", + "tokio 1.2.0", ] [[package]] @@ -650,7 +652,7 @@ dependencies = [ "postgres-openssl", "refinery", "rustls", - "tokio", + "tokio 0.2.22", "tokio-postgres", "tokio-postgres-rustls", ] @@ -672,7 +674,7 @@ name = "oxidizer-tests" version = "0.2.1" dependencies = [ "oxidizer", - "tokio", + "tokio 0.2.22", ] [[package]] @@ -751,6 +753,12 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282adbf10f2698a7a77f8e983a74b2d18176c19a7fd32a45446139ae7b02b715" +[[package]] +name = "pin-project-lite" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905" + [[package]] name = "pin-utils" version = "0.1.0" @@ -772,7 +780,7 @@ dependencies = [ "bytes", "futures", "openssl", - "tokio", + "tokio 0.2.22", "tokio-openssl", "tokio-postgres", ] @@ -1179,13 +1187,24 @@ dependencies = [ "mio-named-pipes", "mio-uds", "num_cpus", - "pin-project-lite", + "pin-project-lite 0.1.7", "signal-hook-registry", "slab", "tokio-macros", "winapi 0.3.9", ] +[[package]] +name = "tokio" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8190d04c665ea9e6b6a0dc45523ade572c088d2e6566244c1122671dbf4ae3a" +dependencies = [ + "autocfg", + "num_cpus", + "pin-project-lite 0.2.6", +] + [[package]] name = "tokio-macros" version = "0.2.5" @@ -1204,7 +1223,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c4b08c5f4208e699ede3df2520aca2e82401b2de33f45e96696a074480be594" dependencies = [ "openssl", - "tokio", + "tokio 0.2.22", ] [[package]] @@ -1222,10 +1241,10 @@ dependencies = [ "parking_lot", "percent-encoding", "phf", - "pin-project-lite", + "pin-project-lite 0.1.7", "postgres-protocol", "postgres-types", - "tokio", + "tokio 0.2.22", "tokio-util", ] @@ -1239,7 +1258,7 @@ dependencies = [ "futures", "ring", "rustls", - "tokio", + "tokio 0.2.22", "tokio-postgres", "tokio-rustls", "webpki", @@ -1253,7 +1272,7 @@ checksum = "e12831b255bcfa39dc0436b01e19fea231a37db570686c06ee72c423479f889a" dependencies = [ "futures-core", "rustls", - "tokio", + "tokio 0.2.22", "webpki", ] @@ -1267,8 +1286,8 @@ dependencies = [ "futures-core", "futures-sink", "log", - "pin-project-lite", - "tokio", + "pin-project-lite 0.1.7", + "tokio 0.2.22", ] [[package]] diff --git a/oxidizer/Cargo.toml b/oxidizer/Cargo.toml index 4eea8b9..2652cd6 100644 --- a/oxidizer/Cargo.toml +++ b/oxidizer/Cargo.toml @@ -22,7 +22,7 @@ chrono = "0.4.19" async-trait = "0.1.43" tokio = { version = "0.2", features = ["full"] } tokio-postgres = { version= "0.5.4", features = ["with-chrono-0_4"]} -mobc = "0.5" +mobc = "0.7" barrel = { version = "0.6.5", features = ["pg"] } refinery = { version = "0.4.0", features = ["tokio-postgres"]} cfg-if = "1.0.0"