From 8fcc8f77f6ab06f66cf628f52860dc8d9dd2b808 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Feb 2023 18:58:08 +0000 Subject: [PATCH] Update actix-web requirement from 3.0.2 to 4.3.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.3.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 a3e7584..ad1c18f 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.3.1" # Web framework clap = "4.1.6" # CLI argument parsing env_logger = "0.7.1" # Configure logging level with env variables log = "0.4.11" # Logging facade