Skip to content

Commit

Permalink
bump MSRV to 1.64
Browse files Browse the repository at this point in the history
  • Loading branch information
GlenDC committed Jul 22, 2024
1 parent a31e211 commit e6d7ca7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tower/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
4 changes: 2 additions & 2 deletions tower/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tower/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e6d7ca7

Please sign in to comment.