From 442269ac1faa99e9a6b1f32e6ffef4ac7db063c6 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 21 Aug 2022 20:00:34 +0000 Subject: [PATCH] fix(deps): update rust crate tokio-postgres to 0.7.7 --- Cargo.lock | 15 ++++++++------- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 95b3120..54fb3b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1454,18 +1454,18 @@ dependencies = [ [[package]] name = "phf" -version = "0.10.1" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" +checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" dependencies = [ "phf_shared", ] [[package]] name = "phf_shared" -version = "0.10.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" dependencies = [ "siphasher", ] @@ -2090,15 +2090,16 @@ dependencies = [ [[package]] name = "tokio-postgres" -version = "0.7.6" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19c88a47a23c5d2dc9ecd28fb38fba5fc7e5ddc1fe64488ec145076b0c71c8ae" +checksum = "29a12c1b3e0704ae7dfc25562629798b29c72e6b1d0a681b6f29ab4ae5e7f7bf" dependencies = [ "async-trait", "byteorder", "bytes", "fallible-iterator", - "futures", + "futures-channel", + "futures-util", "log", "parking_lot 0.12.0", "percent-encoding", diff --git a/Cargo.toml b/Cargo.toml index 8678f9e..42d261e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,5 +20,5 @@ postgres-types = { version = "0.2.4", features = ["derive"]} sentry = "0.27.0" sentry-actix = "0.27.0" serde = { version = "1.0.144", features = ["derive"] } -tokio-postgres = { version = "0.7.6", features = ["with-chrono-0_4"]} +tokio-postgres = { version = "0.7.7", features = ["with-chrono-0_4"]} yaml-rust = "0.4.5"