From e6d7ca7936064f8cf50f89b194c123ab2eae3ab1 Mon Sep 17 00:00:00 2001 From: glendc Date: Mon, 22 Jul 2024 15:43:47 +0200 Subject: [PATCH] bump MSRV to 1.64 --- README.md | 2 +- tower/Cargo.toml | 2 +- tower/README.md | 4 ++-- tower/src/lib.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a0716a42f..c250b1cee 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ pattern. If your protocol is entirely stream based, Tower may not be a good fit. Tower will keep a rolling MSRV (minimum supported Rust version) policy of **at least** 6 months. When increasing the MSRV, the new Rust version must have been -released at least six months ago. The current MSRV is 1.63.0. +released at least six months ago. The current MSRV is 1.64.0. ## Getting Started diff --git a/tower/Cargo.toml b/tower/Cargo.toml index 6c8c0970d..4529d8ce3 100644 --- a/tower/Cargo.toml +++ b/tower/Cargo.toml @@ -20,7 +20,7 @@ clients and servers. categories = ["asynchronous", "network-programming"] keywords = ["io", "async", "non-blocking", "futures", "service"] edition = "2018" -rust-version = "1.63.0" +rust-version = "1.64.0" [features] diff --git a/tower/README.md b/tower/README.md index b277f7433..f5d196d7b 100644 --- a/tower/README.md +++ b/tower/README.md @@ -74,7 +74,7 @@ application code, libraries providing middleware implementations, and libraries that implement servers and/or clients for various network protocols. -Depending on your particular use case, you might use Tower in several ways: +Depending on your particular use case, you might use Tower in several ways: * **Implementing application logic** for a networked program. You might use the [`Service`] trait to model your application's behavior, and use @@ -174,7 +174,7 @@ Tower. Tower will keep a rolling MSRV (minimum supported Rust version) policy of **at least** 6 months. When increasing the MSRV, the new Rust version must have been -released at least six months ago. The current MSRV is 1.63.0. +released at least six months ago. The current MSRV is 1.64.0. ## License diff --git a/tower/src/lib.rs b/tower/src/lib.rs index a509b89cb..a41d22ab7 100644 --- a/tower/src/lib.rs +++ b/tower/src/lib.rs @@ -144,7 +144,7 @@ //! //! Tower will keep a rolling MSRV (minimum supported Rust version) policy of **at //! least** 6 months. When increasing the MSRV, the new Rust version must have been -//! released at least six months ago. The current MSRV is 1.63.0. +//! released at least six months ago. The current MSRV is 1.64.0. //! //! [`Service`]: crate::Service //! [`Layer`]: crate::Layer