Skip to content

Commit 0d84d4f

Browse files
Merge pull request #442 from samueltardieu/restore-msrv
Restore MSRV to 1.65.0
2 parents 315218d + da496db commit 0d84d4f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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: 2 additions & 2 deletions
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
@@ -31,7 +31,7 @@ thiserror = "1.0.44"
3131
deprecate-until = "0.1.0"
3232

3333
[dev-dependencies]
34-
codspeed-criterion-compat = "2.2.0"
34+
codspeed-criterion-compat = "1.1.0"
3535
itertools = "0.11.0"
3636
lazy_static = "1.4.0"
3737
movingai = "1.3.0"

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)