Update Rust crate regex to 1.7.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
Kasper Juul Hermansen 2022-11-05 19:57:53 +00:00
parent 502bb26b90
commit cbaa6b9e8d
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -1235,9 +1235,9 @@ dependencies = [
[[package]]
name = "regex"
version = "1.6.0"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
dependencies = [
"aho-corasick",
"memchr",

View File

@ -12,6 +12,6 @@ async-trait = { version = "0.1.58" }
futures = "0.3.25"
tracing = "0.1"
lazy_static = "1.4.0"
regex = { version = "1.6.0" }
regex = { version = "1.7.0" }
thiserror = "1.0.37"
uuid = {version = "1.2.1", features = ["v4", "fast-rng"]}