From ba473fc92571ed0bb4a4815c457ff504e2519eb0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Mar 2022 17:04:03 +0000 Subject: [PATCH] Bump lscolors from 0.8.1 to 0.9.0 Bumps [lscolors](https://github.com/sharkdp/lscolors) from 0.8.1 to 0.9.0. - [Release notes](https://github.com/sharkdp/lscolors/releases) - [Commits](https://github.com/sharkdp/lscolors/compare/v0.8.1...v0.9.0) --- updated-dependencies: - dependency-name: lscolors dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/CICD.yml | 2 +- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- README.md | 2 +- build.rs | 2 +- clippy.toml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index a40f409..930db3b 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -1,7 +1,7 @@ name: CICD env: - MIN_SUPPORTED_RUST_VERSION: "1.54.0" + MIN_SUPPORTED_RUST_VERSION: "1.56.0" CICD_INTERMEDIATES_DIR: "_cicd-intermediates" on: diff --git a/Cargo.lock b/Cargo.lock index 476b796..8895415 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -335,9 +335,9 @@ dependencies = [ [[package]] name = "lscolors" -version = "0.8.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dd58d8727f3035fa6d5272f16b519741fd4875936b99d8a7cde21291b7d9174" +checksum = "4e9323b3525d4efad2dead1837a105e313253bfdbad1d470994038eededa4d62" dependencies = [ "ansi_term", ] diff --git a/Cargo.toml b/Cargo.toml index 0305137..d20ea9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ name = "fd-find" readme = "README.md" repository = "https://github.com/sharkdp/fd" version = "8.3.2" -edition= "2018" +edition= "2021" [badges.appveyor] repository = "sharkdp/fd" @@ -43,7 +43,7 @@ regex = "1.5.4" regex-syntax = "0.6" ctrlc = "3.2" humantime = "2.1" -lscolors = "0.8" +lscolors = "0.9" globset = "0.4" anyhow = "1.0" dirs-next = "2.0" diff --git a/README.md b/README.md index e11a7c8..d7b3266 100644 --- a/README.md +++ b/README.md @@ -652,7 +652,7 @@ With Rust's package manager [cargo](https://github.com/rust-lang/cargo), you can ``` cargo install fd-find ``` -Note that rust version *1.54.0* or later is required. +Note that rust version *1.56.0* or later is required. `make` is also needed for the build. diff --git a/build.rs b/build.rs index 4a24cd8..d78641a 100644 --- a/build.rs +++ b/build.rs @@ -7,7 +7,7 @@ use Shell::*; include!("src/app.rs"); fn main() { - let min_version = "1.54"; + let min_version = "1.56"; match version_check::is_min_version(min_version) { Some(true) => {} diff --git a/clippy.toml b/clippy.toml index 0f31b88..0d369b5 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.54.0" +msrv = "1.56.0"