From cef132b0464e46e9ea17f9f15b6fa41f19a594fc Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 24 Mar 2021 05:23:08 +0000 Subject: [PATCH] Update actix requirement from 0.8.3 to 0.11.1 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.11.1) 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..0b96b82 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.11.1" 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..6575c97 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.11.1" # DO NOT USE BB8. INTEGRATION TESTS HAD DB CONNECTION TIMEOUTS. # If you really need a connection pool, look into pgbouncer or L337-postgres.