From f07283c7643223862a31e214f6ea3d3f1216bbb3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 23:56:36 +0000 Subject: [PATCH] build(deps): bump bstr from 1.6.2 to 1.7.0 (#538) --- Cargo.lock | 14 ++++++++++---- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dbc052c..6d2b65b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -126,12 +126,12 @@ checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" [[package]] name = "bstr" -version = "1.6.2" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a" +checksum = "c79ad7fb2dd38f3dabd76b09c6a5a20c038fc0213ef1e9afd30eb777f120f019" dependencies = [ "memchr", - "regex-automata", + "regex-automata 0.4.1", "serde", ] @@ -968,7 +968,7 @@ checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" dependencies = [ "aho-corasick", "memchr", - "regex-automata", + "regex-automata 0.3.8", "regex-syntax", ] @@ -983,6 +983,12 @@ dependencies = [ "regex-syntax", ] +[[package]] +name = "regex-automata" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "465c6fc0621e4abc4187a2bda0937bfd4f722c2730b29562e19689ea796c9a4b" + [[package]] name = "regex-syntax" version = "0.7.5" diff --git a/Cargo.toml b/Cargo.toml index 284afe9..693c6e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ description = "A command-line utility for easily compressing and decompressing f [dependencies] atty = "0.2.14" -bstr = { version = "1.6.2", default-features = false, features = ["std"] } +bstr = { version = "1.7.0", default-features = false, features = ["std"] } bzip2 = "0.4.4" clap = { version = "4.4.6", features = ["derive", "env"] } filetime = "0.2.22"