From 8374cbf15ba467fac44458034d972902e0682c35 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 9 Jun 2021 05:19:08 +0000 Subject: [PATCH] Update actix requirement from 0.10.0 to 0.12.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/actix-v0.11.0-beta.3...v0.12.0) --- 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..71d70f6 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.12.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 6ddc635..61f3bb5 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.12.0" # Actor communication between handlers and Git actix-rt = "1.1.1" # Actix macros actix-web = "3.0.2" # Web framework clap = "2.33.1" # CLI argument parsing