From 612e43601381ba451db53dd651add5dae06fbda2 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 25 Oct 2023 22:17:33 +0200 Subject: [PATCH] Bump MSRV to 1.65 Required by indirect dependency regex-syntax. --- .github/workflows/CI.yml | 2 +- axum-extra/Cargo.toml | 2 +- axum-extra/README.md | 2 +- axum-macros/Cargo.toml | 2 +- axum-macros/README.md | 2 +- axum/CHANGELOG.md | 2 +- axum/Cargo.toml | 2 +- axum/README.md | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index db6e5eab4d..79ce211291 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -2,7 +2,7 @@ name: CI env: CARGO_TERM_COLOR: always - MSRV: '1.63' + MSRV: '1.65' on: push: diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 710d11998f..828db3f58a 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -2,7 +2,7 @@ categories = ["asynchronous", "network-programming", "web-programming"] description = "Extra utilities for axum" edition = "2021" -rust-version = "1.63" +rust-version = "1.65" homepage = "https://github.com/tokio-rs/axum" keywords = ["http", "web", "framework"] license = "MIT" diff --git a/axum-extra/README.md b/axum-extra/README.md index cef5689841..d94414cebc 100644 --- a/axum-extra/README.md +++ b/axum-extra/README.md @@ -14,7 +14,7 @@ This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in ## Minimum supported Rust version -axum-extra's MSRV is 1.63. +axum-extra's MSRV is 1.65. ## Getting Help diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml index ef98c51b19..dc74f519a9 100644 --- a/axum-macros/Cargo.toml +++ b/axum-macros/Cargo.toml @@ -2,7 +2,7 @@ categories = ["asynchronous", "network-programming", "web-programming"] description = "Macros for axum" edition = "2021" -rust-version = "1.63" +rust-version = "1.65" homepage = "https://github.com/tokio-rs/axum" keywords = ["axum"] license = "MIT" diff --git a/axum-macros/README.md b/axum-macros/README.md index e411e4170c..79a8752d7e 100644 --- a/axum-macros/README.md +++ b/axum-macros/README.md @@ -14,7 +14,7 @@ This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in ## Minimum supported Rust version -axum-macros's MSRV is 1.63. +axum-macros's MSRV is 1.65. ## Getting Help diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 57474c5303..7294549cf3 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -61,7 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - **fixed:** Fix `.source()` of composite rejections ([#2030]) - **fixed:** Allow unreachable code in `#[debug_handler]` ([#2014]) - **change:** Update tokio-tungstenite to 0.19 ([#2021]) -- **change:** axum's MSRV is now 1.63 ([#2021]) +- **change:** axum's MSRV is now 1.65 ([#2021]) - **added:** Implement `Handler` for `T: IntoResponse` ([#2140]) - **added:** Implement `IntoResponse` for `(R,) where R: IntoResponse` ([#2143]) - **changed:** For SSE, add space between field and value for compatibility ([#2149]) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index e0062a099f..acdce9bcf8 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -4,7 +4,7 @@ version = "0.6.16" categories = ["asynchronous", "network-programming", "web-programming::http-server"] description = "Web framework that focuses on ergonomics and modularity" edition = "2021" -rust-version = "1.63" +rust-version = "1.65" homepage = "https://github.com/tokio-rs/axum" keywords = ["http", "web", "framework"] license = "MIT" diff --git a/axum/README.md b/axum/README.md index a97b734cfd..0b55d6abb3 100644 --- a/axum/README.md +++ b/axum/README.md @@ -112,7 +112,7 @@ This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in ## Minimum supported Rust version -axum's MSRV is 1.63. +axum's MSRV is 1.65. ## Examples