This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/branch-1.11 by this push:
new 294c8e4ce Bump regex from 1.8.4 to 1.9.0 in /lang/rust (#2320)
294c8e4ce is described below
commit 294c8e4ce62f5196a5688eab9ee06dd608773441
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Jul 5 22:22:10 2023 +0300
Bump regex from 1.8.4 to 1.9.0 in /lang/rust (#2320)
Bumps [regex](https://github.com/rust-lang/regex) from 1.8.4 to 1.9.0.
- [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.4...1.9.0)
---
updated-dependencies:
- dependency-name: regex
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
(cherry picked from commit 685dc90e53164161b52bf24173980f959011828e)
---
lang/rust/Cargo.lock | 22 +++++++++++++++++-----
lang/rust/avro/Cargo.toml | 2 +-
2 files changed, 18 insertions(+), 6 deletions(-)
diff --git a/lang/rust/Cargo.lock b/lang/rust/Cargo.lock
index fe2c4559d..3abb3f9eb 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -808,13 +808,25 @@ checksum =
"a0d51660a68078997855ba5602f73ab3a5031bd7ad480a9d4c90fbbf04e1fff0"
[[package]]
name = "regex"
-version = "1.8.4"
+version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
+checksum = "89089e897c013b3deb627116ae56a6955a72b8bed395c9526af31c9fe528b484"
dependencies = [
"aho-corasick",
"memchr",
- "regex-syntax 0.7.2",
+ "regex-automata",
+ "regex-syntax 0.7.3",
+]
+
+[[package]]
+name = "regex-automata"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fa250384981ea14565685dea16a9ccc4d1c541a13f82b9c168572264d1df8c56"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-syntax 0.7.3",
]
[[package]]
@@ -825,9 +837,9 @@ checksum =
"f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
[[package]]
name = "regex-syntax"
-version = "0.7.2"
+version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
+checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846"
[[package]]
name = "rle-decode-fast"
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 6d8847d04..4baa2b994 100644
--- a/lang/rust/avro/Cargo.toml
+++ b/lang/rust/avro/Cargo.toml
@@ -63,7 +63,7 @@ lazy_static = { default-features = false, version = "1.4.0" }
libflate = { default-features = false, version = "1.2.0" }
log = { default-features = false, version = "0.4.19" }
num-bigint = { default-features = false, version = "0.4.3" }
-regex = { default-features = false, version = "1.8.4", features = ["std",
"perf"] }
+regex = { default-features = false, version = "1.9.0", features = ["std",
"perf"] }
serde = { default-features = false, version = "1.0.164", features = ["derive"]
}
serde_json = { default-features = false, version = "1.0.99", features =
["std"] }
snap = { default-features = false, version = "1.1.0", optional = true }