Skip to content

Commit da496db

Browse files
committed
Revert "Update MSRV to 1.70.0"
This reverts commit 7dfd691.
1 parent f7b3b39 commit da496db

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/bors.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
status = [
22
"Check", "cargo deny", "pre-commit", "Rustfmt", "Clippy", "Test with minimal versions",
3-
"Test suite (stable)", "Test suite (beta)", "Test suite (nightly)", "Test suite (1.70.0)"
3+
"Test suite (stable)", "Test suite (beta)", "Test suite (nightly)", "Test suite (1.65.0)"
44
]
55
delete_merged_branches = true

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
needs: check
3737
strategy:
3838
matrix:
39-
toolchain: [stable, beta, nightly, 1.70.0]
39+
toolchain: [stable, beta, nightly, 1.65.0]
4040
fail-fast: false
4141
steps:
4242
- uses: actions/checkout@v3

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = ["Samuel Tardieu <sam@rfc1149.net>"]
1111
categories = ["algorithms"]
1212
readme = "README.md"
1313
edition = "2021"
14-
rust-version = "1.70.0"
14+
rust-version = "1.65.0"
1515

1616
[package.metadata.release]
1717
sign-commit = true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ floating-point types (such as `f32`) that implement `PartialOrd`
8989
in this context, you can wrap them into compliant types using the
9090
[ordered-float](https://crates.io/crates/ordered-float) crate.
9191

92-
The minimum supported Rust version (MSRV) is Rust 1.70.0.
92+
The minimum supported Rust version (MSRV) is Rust 1.65.0.
9393

9494
## License
9595

tests/ui.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[test]
22
fn ui() {
33
match std::env::var("TOOLCHAIN").as_deref() {
4-
Ok("stable") | Ok("1.70.0") => (),
4+
Ok("stable") | Ok("1.65.0") => (),
55
_ => {
66
let t = trybuild::TestCases::new();
77
t.compile_fail("tests/ui/*.rs");

0 commit comments

Comments
 (0)