Skip to content

Commit

Permalink
Add MSRV Rust 1.63
Browse files Browse the repository at this point in the history
  • Loading branch information
Xaeroxe committed Sep 4, 2023
1 parent 8339311 commit 1e79276
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [stable, nightly]
rust: [1.63, stable, nightly]
steps:
- name: Setup | Checkout
uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "which"
version = "4.4.2"
edition = "2021"
rust-version = "1.63"
authors = ["Harry Fei <tiziyuanfang@gmail.com>"]
repository = "https://github.com/harryfei/which-rs.git"
documentation = "https://docs.rs/which/"
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ A Rust equivalent of Unix command "which". Locate installed executable in cross
.for_each(|pth| println!("{}", pth.to_string_lossy()));
```

## MSRV

This crate currently has an MSRV of Rust 1.63. Increasing the MSRV is considered a breaking change and thus requires a major version bump.

## Documentation

The documentation is [available online](https://docs.rs/which/).

0 comments on commit 1e79276

Please sign in to comment.