Skip to content

Commit 77dcda3

Browse files
committed
bump msrv
We don't use Cargo.lock.msrv, so recent once-cell bump borked us.
1 parent bccc26a commit 77dcda3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ license = "MIT OR Apache-2.0"
88
repository = "https://github.com/rust-analyzer/expect-test"
99
authors = ["rust-analyzer developers"]
1010
edition = "2018"
11+
rust-version = "1.60.0"
1112

1213
exclude = ["./github", "bors.toml", "rustfmt.toml"]
1314

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
//!
136136
//! ## Minimal Supported Rust Version
137137
//!
138-
//! This crate's minimum supported `rustc` version is `1.45.0`. MSRV is updated
138+
//! This crate's minimum supported `rustc` version is `1.60.0`. MSRV is updated
139139
//! conservatively, supporting roughly 10 minor versions of `rustc`. MSRV bump
140140
//! is not considered semver breaking, but will require at least minor version
141141
//! bump.

xtask/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::env;
22

33
use xaction::{cargo_toml, cmd, git, push_rustup_toolchain, section, Result};
44

5-
const MSRV: &str = "1.56.0";
5+
const MSRV: &str = "1.60.0";
66

77
fn main() {
88
if let Err(err) = try_main() {

0 commit comments

Comments
 (0)