From d0e22f42804fdb76b5fc4f64b25ed49cb988e447 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jun 2024 13:40:35 +0000 Subject: [PATCH] build(deps): bump actix-web from 4.6.0 to 4.7.0 Bumps [actix-web](https://github.com/actix/actix-web) from 4.6.0 to 4.7.0. - [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-v4.6.0...web-v4.7.0) --- updated-dependencies: - dependency-name: actix-web dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- examples/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2ed51f9..fc45f57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -133,9 +133,9 @@ dependencies = [ [[package]] name = "actix-web" -version = "4.6.0" +version = "4.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1cf67dadb19d7c95e5a299e2dda24193b89d5d4f33a3b9800888ede9e19aa32" +checksum = "5d6316df3fa569627c98b12557a8b6ff0674e5be4bb9b5e4ae2550ddb4964ed6" dependencies = [ "actix-codec", "actix-http", @@ -174,9 +174,9 @@ dependencies = [ [[package]] name = "actix-web-codegen" -version = "4.2.2" +version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb1f50ebbb30eca122b188319a4398b3f7bb4a8cdf50ecfb73bfc6a3c3ce54f5" +checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8" dependencies = [ "actix-router", "proc-macro2", diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 6c07758..96dbfdb 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -13,7 +13,7 @@ name = "producer-server" path = "src/producer-server.rs" [dependencies] -actix-web = "4.6.0" +actix-web = "4.7.0" dotenv = "0.15.0" futures = "0.3.30" rand = "0.8.5" diff --git a/server/Cargo.toml b/server/Cargo.toml index bdec162..79d05b6 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -6,7 +6,7 @@ default-run = "server" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -actix-web = "4.6.0" +actix-web = "4.7.0" chrono = { version = "0.4.38", features = ["serde"] } dotenv = "0.15.0" envconfig = "0.10.0"