diff --git a/Cargo.lock b/Cargo.lock index 29c70fb9..af8f6064 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -41,7 +41,7 @@ version = "2.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9834fcc22e0874394a010230586367d4a3e9f11b560f469262678547e1d2575e" dependencies = [ - "bstr 1.1.0", + "bstr", "doc-comment", "predicates", "predicates-core", @@ -144,17 +144,6 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" -[[package]] -name = "bstr" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" -dependencies = [ - "lazy_static", - "memchr", - "regex-automata", -] - [[package]] name = "bstr" version = "1.1.0" @@ -530,7 +519,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" dependencies = [ "aho-corasick", - "bstr 1.1.0", + "bstr", "fnv", "log", "regex", @@ -538,12 +527,12 @@ dependencies = [ [[package]] name = "grep-cli" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dd110c34bb4460d0de5062413b773e385cbf8a85a63fc535590110a09e79e8a" +checksum = "d19fc6687bc64b6719a839cd24f2c700bcb05ffeb684d19da6a637c2455a7ba1" dependencies = [ "atty", - "bstr 0.2.17", + "bstr", "globset", "lazy_static", "log", diff --git a/Cargo.toml b/Cargo.toml index 9bbd7332..9081c429 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ path_abs = { version = "0.5", default-features = false } clircle = "0.3" bugreport = { version = "0.5.0", optional = true } dirs-next = { version = "2.0.0", optional = true } -grep-cli = { version = "0.1.6", optional = true } +grep-cli = { version = "0.1.7", optional = true } regex = { version = "1.7.0", optional = true } walkdir = { version = "2.0", optional = true } bytesize = { version = "1.1.0" }