mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-09 16:51:35 +00:00
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:
parent
7f1257b696
commit
c24ea52285
21
src/agent/Cargo.lock
generated
21
src/agent/Cargo.lock
generated
@ -43,6 +43,15 @@ dependencies = [
|
||||
"memchr",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "aho-corasick"
|
||||
version = "1.0.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "anyhow"
|
||||
version = "1.0.70"
|
||||
@ -1208,7 +1217,7 @@ version = "0.4.10"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
|
||||
dependencies = [
|
||||
"aho-corasick",
|
||||
"aho-corasick 0.7.18",
|
||||
"bstr",
|
||||
"fnv",
|
||||
"log",
|
||||
@ -2699,20 +2708,20 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "regex"
|
||||
version = "1.7.1"
|
||||
version = "1.8.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
|
||||
checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
|
||||
dependencies = [
|
||||
"aho-corasick",
|
||||
"aho-corasick 1.0.1",
|
||||
"memchr",
|
||||
"regex-syntax",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "regex-syntax"
|
||||
version = "0.6.27"
|
||||
version = "0.7.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
|
||||
checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
|
||||
|
||||
[[package]]
|
||||
name = "reqwest"
|
||||
|
@ -10,7 +10,7 @@ cobertura = { path = "../cobertura" }
|
||||
debuggable-module = { path = "../debuggable-module" }
|
||||
iced-x86 = "1.18"
|
||||
log = "0.4.17"
|
||||
regex = "1.7"
|
||||
regex = "1.8"
|
||||
symbolic = { version = "10.1", features = [
|
||||
"debuginfo",
|
||||
"demangle",
|
||||
|
@ -12,7 +12,7 @@ goblin = "0.6.0"
|
||||
iced-x86 = "1.18"
|
||||
log = "0.4.17"
|
||||
pdb = "0.8.0"
|
||||
regex = "1.7"
|
||||
regex = "1.8"
|
||||
symbolic = { version = "10.1", features = ["debuginfo", "demangle", "symcache"] }
|
||||
thiserror = "1.0"
|
||||
|
||||
|
@ -8,7 +8,7 @@ license = "MIT"
|
||||
anyhow = "1.0"
|
||||
clap = { version = "4.1.6", features = ["derive"] }
|
||||
lazy_static = "1.4"
|
||||
regex = "1.7"
|
||||
regex = "1.8"
|
||||
thiserror = "1.0"
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
|
@ -10,5 +10,5 @@ description = "Minimal porting of features from libclusterfuzz"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
regex = "1.7.1"
|
||||
regex = "1.8.1"
|
||||
lazy_static = "1.4"
|
||||
|
@ -27,7 +27,7 @@ lazy_static = "1.4"
|
||||
log = "0.4"
|
||||
num_cpus = "1.15"
|
||||
onefuzz-file-format = { path = "../onefuzz-file-format" }
|
||||
regex = "1.7.1"
|
||||
regex = "1.8.1"
|
||||
reqwest = { version = "0.11", features = [
|
||||
"json",
|
||||
"stream",
|
||||
|
@ -19,7 +19,7 @@ hex = "0.4"
|
||||
lazy_static = "1.4"
|
||||
log = "0.4"
|
||||
notify = "5.1.0"
|
||||
regex = "1.7.1"
|
||||
regex = "1.8.1"
|
||||
reqwest = { version = "0.11", features = [
|
||||
"json",
|
||||
"stream",
|
||||
|
@ -8,7 +8,7 @@ license = "MIT"
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
hex = "0.4"
|
||||
regex = "1.7.1"
|
||||
regex = "1.8.1"
|
||||
lazy_static = "1.4.0"
|
||||
sha2 = "0.10.2"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
@ -15,7 +15,7 @@ derivative = "2.2"
|
||||
flume = "0.10"
|
||||
num_cpus = "1.15"
|
||||
quick-xml = { version = "0.28", features = ["serialize", "serde-types"] }
|
||||
regex = "1.7.1"
|
||||
regex = "1.8.1"
|
||||
reqwest = { version = "0.11", features = [
|
||||
"json",
|
||||
"stream",
|
||||
|
Loading…
x
Reference in New Issue
Block a user