From f1e6c94fa4db6d32c2b9bde39b7a5e346c05a657 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 13:12:43 +0000 Subject: [PATCH] Update axum requirement from 0.6 to 0.7 Updates the requirements on [axum](https://github.com/tokio-rs/axum) to permit the latest version. - [Release notes](https://github.com/tokio-rs/axum/releases) - [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/axum/compare/axum-v0.6.0...axum-v0.7.1) --- updated-dependencies: - dependency-name: axum dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- sample-cgi-script/Cargo.toml | 2 +- tower-cgi/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sample-cgi-script/Cargo.toml b/sample-cgi-script/Cargo.toml index 12561c6..5ed14a3 100644 --- a/sample-cgi-script/Cargo.toml +++ b/sample-cgi-script/Cargo.toml @@ -6,6 +6,6 @@ license = "Apache-2.0" publish = false [dependencies] -axum = "0.6" +axum = "0.7" tower-cgi = { path = "../tower-cgi" } tokio = { version = "1", features = ["full"] } diff --git a/tower-cgi/Cargo.toml b/tower-cgi/Cargo.toml index 3f56918..197e812 100644 --- a/tower-cgi/Cargo.toml +++ b/tower-cgi/Cargo.toml @@ -11,5 +11,5 @@ snafu = "0.7" tower = { version = "0.4", default-features = false, features = ["util"] } [dev-dependencies] -axum = "0.6" +axum = "0.7" tokio = { version = "1", features = ["full"] }