From 1f68177824222fac09c5b9d638721aaa9c5ab55f Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 9 Jun 2021 05:23:31 +0000 Subject: [PATCH] Update actix requirement from 0.8.3 to 0.12.0 Updates the requirements on [actix](https://github.com/actix/actix) to permit the latest version. - [Release notes](https://github.com/actix/actix/releases) - [Commits](https://github.com/actix/actix/compare/v0.8.3...v0.12.0) Signed-off-by: dependabot-preview[bot] --- postgres-rest-actix/Cargo.toml | 2 +- postgres-rest/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/postgres-rest-actix/Cargo.toml b/postgres-rest-actix/Cargo.toml index 3243271..aad9cbd 100644 --- a/postgres-rest-actix/Cargo.toml +++ b/postgres-rest-actix/Cargo.toml @@ -9,7 +9,7 @@ name = "postgres_rest_actix" path = "src/lib.rs" [dependencies] -actix = "0.8.3" +actix = "0.12.0" actix-web = "1.0.5" failure = "0.1.5" futures = "0.1.28" diff --git a/postgres-rest/Cargo.toml b/postgres-rest/Cargo.toml index d417a68..38406d3 100644 --- a/postgres-rest/Cargo.toml +++ b/postgres-rest/Cargo.toml @@ -9,7 +9,7 @@ name = "postgres_rest" path = "src/lib.rs" [dependencies] -actix = "0.8.3" +actix = "0.12.0" # DO NOT USE BB8. INTEGRATION TESTS HAD DB CONNECTION TIMEOUTS. # If you really need a connection pool, look into pgbouncer or L337-postgres.