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 24de0b604 Bump regex from 1.9.1 to 1.9.3 in /lang/rust (#2426)
24de0b604 is described below
commit 24de0b604edf4efb37f4ea2df27fc1269f7721fe
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Aug 9 12:09:23 2023 +0300
Bump regex from 1.9.1 to 1.9.3 in /lang/rust (#2426)
Bumps [regex](https://github.com/rust-lang/regex) from 1.9.1 to 1.9.3.
- [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.9.1...1.9.3)
---
updated-dependencies:
- dependency-name: regex
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
(cherry picked from commit 99266667e4a5df71e5beb35e84b6df8251bc84d9)
---
lang/rust/Cargo.lock | 16 ++++++++--------
lang/rust/avro/Cargo.toml | 2 +-
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/lang/rust/Cargo.lock b/lang/rust/Cargo.lock
index ee9839b2d..1ac4be7d1 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -864,25 +864,25 @@ checksum =
"a0d51660a68078997855ba5602f73ab3a5031bd7ad480a9d4c90fbbf04e1fff0"
[[package]]
name = "regex"
-version = "1.9.1"
+version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
+checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a"
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
- "regex-syntax 0.7.3",
+ "regex-syntax 0.7.4",
]
[[package]]
name = "regex-automata"
-version = "0.3.2"
+version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "83d3daa6976cffb758ec878f108ba0e062a45b2d6ca3a2cca965338855476caf"
+checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69"
dependencies = [
"aho-corasick",
"memchr",
- "regex-syntax 0.7.3",
+ "regex-syntax 0.7.4",
]
[[package]]
@@ -893,9 +893,9 @@ checksum =
"f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
[[package]]
name = "regex-syntax"
-version = "0.7.3"
+version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846"
+checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
[[package]]
name = "rle-decode-fast"
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 22551db7d..920294246 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 = "2.0.0", features = ["std"] }
log = { default-features = false, version = "0.4.19" }
num-bigint = { default-features = false, version = "0.4.3" }
-regex = { default-features = false, version = "1.9.1", features = ["std",
"perf"] }
+regex = { default-features = false, version = "1.9.3", features = ["std",
"perf"] }
serde = { default-features = false, version = "1.0.180", features = ["derive"]
}
serde_json = { default-features = false, version = "1.0.104", features =
["std"] }
snap = { default-features = false, version = "1.1.0", optional = true }