mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-19 02:10:34 +01:00
Bump MSRV to 1.53
This commit is contained in:
parent
00eb6461cb
commit
a64a607fd8
4 changed files with 4 additions and 4 deletions
2
.github/workflows/CICD.yml
vendored
2
.github/workflows/CICD.yml
vendored
|
@ -1,7 +1,7 @@
|
|||
name: CICD
|
||||
|
||||
env:
|
||||
MIN_SUPPORTED_RUST_VERSION: "1.42.0"
|
||||
MIN_SUPPORTED_RUST_VERSION: "1.53.0"
|
||||
CICD_INTERMEDIATES_DIR: "_cicd-intermediates"
|
||||
|
||||
on:
|
||||
|
|
|
@ -639,7 +639,7 @@ With Rust's package manager [cargo](https://github.com/rust-lang/cargo), you can
|
|||
```
|
||||
cargo install fd-find
|
||||
```
|
||||
Note that rust version *1.42.0* or later is required.
|
||||
Note that rust version *1.53.0* or later is required.
|
||||
|
||||
`make` is also needed for the build.
|
||||
|
||||
|
|
2
build.rs
2
build.rs
|
@ -5,7 +5,7 @@ use clap::Shell;
|
|||
include!("src/app.rs");
|
||||
|
||||
fn main() {
|
||||
let min_version = "1.42";
|
||||
let min_version = "1.53";
|
||||
|
||||
match version_check::is_min_version(min_version) {
|
||||
Some(true) => {}
|
||||
|
|
|
@ -1 +1 @@
|
|||
msrv = "1.42.0"
|
||||
msrv = "1.53.0"
|
||||
|
|
Loading…
Reference in a new issue