Skip to content

Commit

Permalink
bump MSRV to 1.65.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nugine committed Oct 15, 2023
1 parent ce24c8d commit e51785a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
toolchain:
- stable
- nightly
- 1.64.0 # MSRV
- 1.65.0 # MSRV
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolchain

+ [Rust 1.64.0 or newer](https://rustup.rs/)
+ [Rust 1.65.0 or newer](https://rustup.rs/)
+ [just](https://github.com/casey/just)

Get the source code
Expand Down
2 changes: 1 addition & 1 deletion const-str-proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/Nugine/const-str"
keywords = ["string", "const", "proc-macro"]
categories = ["text-processing", "no-std"]
readme = "../README.md"
rust-version = "1.64.0"
rust-version = "1.65.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion const-str/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/Nugine/const-str"
keywords = ["string", "const", "proc-macro"]
categories = ["text-processing", "no-std"]
readme = "../README.md"
rust-version = "1.64.0"
rust-version = "1.65.0"

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion const-str/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Compile-time string operations
//!
//! MSRV: Rust 1.64.0
//! MSRV: Rust 1.65.0
//!
#![deny(unsafe_code, missing_docs, clippy::all, clippy::cargo)]
#![allow(
Expand Down

0 comments on commit e51785a

Please sign in to comment.