From f5487c55257b06c2af6245ede6ea5ef34f71dafb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jul 2023 06:54:23 +0000 Subject: [PATCH] Bump regex from 1.8.1 to 1.9.1 Bumps [regex](https://github.com/rust-lang/regex) from 1.8.1 to 1.9.1. - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.8.1...1.9.1) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 ++++++++++++++++---- crates/huak_ops/Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 47a9cda6..be3d66a7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -741,9 +741,21 @@ dependencies = [ [[package]] name = "regex" -version = "1.8.1" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" +checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83d3daa6976cffb758ec878f108ba0e062a45b2d6ca3a2cca965338855476caf" dependencies = [ "aho-corasick", "memchr", @@ -752,9 +764,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.7.1" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" +checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846" [[package]] name = "rustc-demangle" diff --git a/crates/huak_ops/Cargo.toml b/crates/huak_ops/Cargo.toml index cc2ebe7a..f55c2a3c 100644 --- a/crates/huak_ops/Cargo.toml +++ b/crates/huak_ops/Cargo.toml @@ -21,7 +21,7 @@ termcolor = "1.2.0" thiserror = "1.0.40" toml = { version = "0.7.3", features = ["preserve_order"] } toml_edit = "0.19.4" -regex = "1.8.1" +regex = "1.9.1" [dev-dependencies] tempfile = "3.5.0" \ No newline at end of file