From 9133a0c63240ca2b015bce1692915e7c23a0b700 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 22 Mar 2021 05:30:31 +0000 Subject: [PATCH] Update actix requirement from 0.8.3 to 0.11.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.11.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..e9736b0 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.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..ca6c54b 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.0" # DO NOT USE BB8. INTEGRATION TESTS HAD DB CONNECTION TIMEOUTS. # If you really need a connection pool, look into pgbouncer or L337-postgres.