From d863765c7c00efd576a14584688ab5488b5c0a2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 12:36:38 +0000 Subject: [PATCH] Update axum requirement from ^0.6.19 to ^0.7.1 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.19...axum-v0.7.1) --- updated-dependencies: - dependency-name: axum dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- adapter/Cargo.toml | 2 +- example/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/adapter/Cargo.toml b/adapter/Cargo.toml index bf9feb1..6f0b7d2 100644 --- a/adapter/Cargo.toml +++ b/adapter/Cargo.toml @@ -15,7 +15,7 @@ crate-type = ["cdylib", "lib"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -axum = { version = "^0.6.19", default-features = false } +axum = { version = "^0.7.1", default-features = false } worker = { version = "^0.0.18" } http-body = "^0.4.5" axum-wasm-macros = "^0.1.0" diff --git a/example/Cargo.toml b/example/Cargo.toml index 0a4da19..9ec230c 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -13,7 +13,7 @@ default = ["console_error_panic_hook"] cfg-if = "1.0.0" worker = "0.0.18" serde_json = "1.0.96" -axum = { version = "0.6.16", default-features = false } +axum = { version = "0.7.1", default-features = false } tower-service = "0.3.2" axum-cloudflare-adapter = { path = "../adapter" } wasm-bindgen-futures = "0.4.34"