Bump regex from 1.7.1 to 1.8.1 in /src/agent (#3052)

Bumps [regex](https://github.com/rust-lang/regex) from 1.7.1 to 1.8.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.7.1...1.8.1)

---
updated-dependencies:
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-04-25 21:46:02 +00:00 committed by GitHub
parent 7f1257b696
commit c24ea52285
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 23 additions and 14 deletions

21
src/agent/Cargo.lock generated
View File

@ -43,6 +43,15 @@ dependencies = [
"memchr", "memchr",
] ]
[[package]]
name = "aho-corasick"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
dependencies = [
"memchr",
]
[[package]] [[package]]
name = "anyhow" name = "anyhow"
version = "1.0.70" version = "1.0.70"
@ -1208,7 +1217,7 @@ version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
dependencies = [ dependencies = [
"aho-corasick", "aho-corasick 0.7.18",
"bstr", "bstr",
"fnv", "fnv",
"log", "log",
@ -2699,20 +2708,20 @@ dependencies = [
[[package]] [[package]]
name = "regex" name = "regex"
version = "1.7.1" version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
dependencies = [ dependencies = [
"aho-corasick", "aho-corasick 1.0.1",
"memchr", "memchr",
"regex-syntax", "regex-syntax",
] ]
[[package]] [[package]]
name = "regex-syntax" name = "regex-syntax"
version = "0.6.27" version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
[[package]] [[package]]
name = "reqwest" name = "reqwest"

View File

@ -10,7 +10,7 @@ cobertura = { path = "../cobertura" }
debuggable-module = { path = "../debuggable-module" } debuggable-module = { path = "../debuggable-module" }
iced-x86 = "1.18" iced-x86 = "1.18"
log = "0.4.17" log = "0.4.17"
regex = "1.7" regex = "1.8"
symbolic = { version = "10.1", features = [ symbolic = { version = "10.1", features = [
"debuginfo", "debuginfo",
"demangle", "demangle",

View File

@ -12,7 +12,7 @@ goblin = "0.6.0"
iced-x86 = "1.18" iced-x86 = "1.18"
log = "0.4.17" log = "0.4.17"
pdb = "0.8.0" pdb = "0.8.0"
regex = "1.7" regex = "1.8"
symbolic = { version = "10.1", features = ["debuginfo", "demangle", "symcache"] } symbolic = { version = "10.1", features = ["debuginfo", "demangle", "symcache"] }
thiserror = "1.0" thiserror = "1.0"

View File

@ -8,7 +8,7 @@ license = "MIT"
anyhow = "1.0" anyhow = "1.0"
clap = { version = "4.1.6", features = ["derive"] } clap = { version = "4.1.6", features = ["derive"] }
lazy_static = "1.4" lazy_static = "1.4"
regex = "1.7" regex = "1.8"
thiserror = "1.0" thiserror = "1.0"
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]

View File

@ -10,5 +10,5 @@ description = "Minimal porting of features from libclusterfuzz"
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0"
regex = "1.7.1" regex = "1.8.1"
lazy_static = "1.4" lazy_static = "1.4"

View File

@ -27,7 +27,7 @@ lazy_static = "1.4"
log = "0.4" log = "0.4"
num_cpus = "1.15" num_cpus = "1.15"
onefuzz-file-format = { path = "../onefuzz-file-format" } onefuzz-file-format = { path = "../onefuzz-file-format" }
regex = "1.7.1" regex = "1.8.1"
reqwest = { version = "0.11", features = [ reqwest = { version = "0.11", features = [
"json", "json",
"stream", "stream",

View File

@ -19,7 +19,7 @@ hex = "0.4"
lazy_static = "1.4" lazy_static = "1.4"
log = "0.4" log = "0.4"
notify = "5.1.0" notify = "5.1.0"
regex = "1.7.1" regex = "1.8.1"
reqwest = { version = "0.11", features = [ reqwest = { version = "0.11", features = [
"json", "json",
"stream", "stream",

View File

@ -8,7 +8,7 @@ license = "MIT"
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0"
hex = "0.4" hex = "0.4"
regex = "1.7.1" regex = "1.8.1"
lazy_static = "1.4.0" lazy_static = "1.4.0"
sha2 = "0.10.2" sha2 = "0.10.2"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }

View File

@ -15,7 +15,7 @@ derivative = "2.2"
flume = "0.10" flume = "0.10"
num_cpus = "1.15" num_cpus = "1.15"
quick-xml = { version = "0.28", features = ["serialize", "serde-types"] } quick-xml = { version = "0.28", features = ["serialize", "serde-types"] }
regex = "1.7.1" regex = "1.8.1"
reqwest = { version = "0.11", features = [ reqwest = { version = "0.11", features = [
"json", "json",
"stream", "stream",