From 39122b0fda72246512e17c2ea10ce06bff06a0b7 Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Sun, 3 Jul 2022 15:50:46 +0530 Subject: [PATCH] Don't pin bitflags This was initially pinned because of clap-rs/clap/issues/2691, but we use a newer version as MSRV as of now in CI. --- Cargo.lock | 1 - Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 927dfee04..08916ceec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -409,7 +409,6 @@ version = "0.22.0" dependencies = [ "assert_cmd", "assert_fs", - "bitflags", "chrono", "chrono-humanize", "clap", diff --git a/Cargo.toml b/Cargo.toml index 788f97cc4..c207dc7da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,6 @@ version_check = "0.9.*" [dependencies] crossterm = { version = "0.21.0", features = ["serde"]} -bitflags = "=1.2.1" dirs = "3.0.*" libc = "0.2.*" human-sort = "0.2.2"