Skip to content

Commit 2b13c7c

Browse files
committed
Auto merge of #12767 - epage:msrv-refactor, r=weihanglo
Prep for automating MSRV management ### What does this PR try to resolve? These are the simpler / less controversial parts of #12654 ensuring we get them in now, reducing the chance for conflicts and getting some of the benefits ### How should we test and review this PR? CI ### Additional information
2 parents ed0a787 + e78486d commit 2b13c7c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -253,5 +253,5 @@ jobs:
253253
runs-on: ubuntu-latest
254254
steps:
255255
- uses: actions/checkout@v4
256-
- run: rustup update 1.70 && rustup default 1.70
257-
- run: cargo test -p cargo-credential
256+
- uses: taiki-e/install-action@cargo-hack
257+
- run: cargo hack check --all-targets --rust-version -p cargo-credential

crates/home/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "home"
3-
version = "0.5.7" # also update `html_root_url` in `src/lib.rs`
3+
version = "0.5.7"
44
authors = ["Brian Anderson <[email protected]>"]
55
documentation = "https://docs.rs/home"
66
edition.workspace = true

crates/home/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
//!
1919
//! [discussion]: https://github.com/rust-lang/rust/pull/46799#issuecomment-361156935
2020
21-
#![doc(html_root_url = "https://docs.rs/home/0.5.6")]
2221
#![deny(rust_2018_idioms)]
2322

2423
pub mod env;

0 commit comments

Comments
 (0)