From 8b0ea0df8b24ff84ea05873718d24c2173feef7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Sep 2022 18:07:46 +0000 Subject: [PATCH] Update actix-web requirement from 3.0.2 to 4.2.1 Updates the requirements on [actix-web](https://github.com/actix/actix-web) to permit the latest version. - [Release notes](https://github.com/actix/actix-web/releases) - [Changelog](https://github.com/actix/actix-web/blob/master/CHANGES.md) - [Commits](https://github.com/actix/actix-web/compare/web-v3.0.2...web-v4.2.1) --- updated-dependencies: - dependency-name: actix-web dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- server/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Cargo.toml b/server/Cargo.toml index 6ddc635..1bfa69d 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -11,7 +11,7 @@ git = { path = "../git" } handlers = { path = "../handlers" } actix = "0.10.0" # Actor communication between handlers and Git actix-rt = "1.1.1" # Actix macros -actix-web = "3.0.2" # Web framework +actix-web = "4.2.1" # Web framework clap = "2.33.1" # CLI argument parsing env_logger = "0.7.1" # Configure logging level with env variables log = "0.4.11" # Logging facade