From 348293d10c4f88fcc59d9782f98d1a53c35fbe0c Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 5 Apr 2021 05:37:20 +0000 Subject: [PATCH] Update tokio-postgres requirement from 0.4.0-rc.3 to 0.7.1 Updates the requirements on [tokio-postgres](https://github.com/sfackler/rust-postgres) to permit the latest version. - [Release notes](https://github.com/sfackler/rust-postgres/releases) - [Commits](https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.3...tokio-postgres-v0.7.1) Signed-off-by: dependabot-preview[bot] --- postgres-rest-actix/Cargo.toml | 4 ++-- postgres-rest/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/postgres-rest-actix/Cargo.toml b/postgres-rest-actix/Cargo.toml index 3243271..558ce4f 100644 --- a/postgres-rest-actix/Cargo.toml +++ b/postgres-rest-actix/Cargo.toml @@ -19,9 +19,9 @@ rayon = "1.1.0" postgres-rest = { version = "0.1.0", path = "../postgres-rest" } serde = { version = "1.0.97", features = ["derive"] } serde_json = "1.0.40" -tokio-postgres = "0.4.0-rc.3" +tokio-postgres = "0.7.1" [dev-dependencies] pretty_assertions = "0.6.1" reqwest = "0.9.19" -tokio-postgres = { version = "0.4.0-rc.3", features = ["with-chrono-0_4", "with-eui48-0_4", "with-eui48-0_4", "with-serde_json-1", "with-uuid-0_7"] } +tokio-postgres = { version = "0.7.1", features = ["with-chrono-0_4", "with-eui48-0_4", "with-eui48-0_4", "with-serde_json-1", "with-uuid-0_7"] } diff --git a/postgres-rest/Cargo.toml b/postgres-rest/Cargo.toml index d417a68..78afcf4 100644 --- a/postgres-rest/Cargo.toml +++ b/postgres-rest/Cargo.toml @@ -31,7 +31,7 @@ serde = { version = "1.0.97", features = ["derive"] } serde_json = "1.0.40" sqlparser = "0.4.0" tokio = "0.1.22" -tokio-postgres = { version = "0.4.0-rc.3", features = ["with-chrono-0_4", "with-eui48-0_4", "with-eui48-0_4", "with-serde_json-1", "with-uuid-0_7"] } +tokio-postgres = { version = "0.7.1", features = ["with-chrono-0_4", "with-eui48-0_4", "with-eui48-0_4", "with-serde_json-1", "with-uuid-0_7"] } uuid = { version = "0.7.4", features = ["serde"] } [dependencies.rust_decimal]