From 85a769df797fad49975d54181b299773aa99c31e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Feb 2023 11:40:20 +0000 Subject: [PATCH] Update actix requirement from 0.10.0 to 0.13.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/commits) --- updated-dependencies: - dependency-name: actix dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- handlers/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/handlers/Cargo.toml b/handlers/Cargo.toml index 22b5ab9..486607c 100644 --- a/handlers/Cargo.toml +++ b/handlers/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" [dependencies] git = { path = "../git" } -actix = "0.10.0" +actix = "0.13.0" # When building for musl (ie. a static binary), we opt into the "vendored" # feature flag of openssl-sys which compiles libopenssl statically for us. diff --git a/server/Cargo.toml b/server/Cargo.toml index a3e7584..ed083c0 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" [dependencies] git = { path = "../git" } handlers = { path = "../handlers" } -actix = "0.10.0" # Actor communication between handlers and Git +actix = "0.13.0" # Actor communication between handlers and Git actix-rt = "1.1.1" # Actix macros actix-web = "3.0.2" # Web framework clap = "4.1.6" # CLI argument parsing