Skip to content

Commit

Permalink
Merge of #7746
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Oct 16, 2023
2 parents 0507670 + 2b54272 commit 30093d2
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3428,14 +3428,14 @@ dependencies = [

[[package]]
name = "regex"
version = "1.10.0"
version = "1.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d119d7c7ca818f8a53c300863d4f87566aac09943aef5b355bb83969dae75d87"
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
dependencies = [
"aho-corasick",
"memchr",
"regex-automata 0.4.1",
"regex-syntax 0.8.1",
"regex-automata 0.4.3",
"regex-syntax 0.8.2",
]

[[package]]
Expand All @@ -3449,13 +3449,13 @@ dependencies = [

[[package]]
name = "regex-automata"
version = "0.4.1"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "465c6fc0621e4abc4187a2bda0937bfd4f722c2730b29562e19689ea796c9a4b"
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax 0.8.1",
"regex-syntax 0.8.2",
]

[[package]]
Expand All @@ -3472,9 +3472,9 @@ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"

[[package]]
name = "regex-syntax"
version = "0.8.1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56d84fdd47036b038fc80dd333d10b6aab10d5d31f4a366e20014def75328d33"
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"

[[package]]
name = "reqwest"
Expand Down
2 changes: 1 addition & 1 deletion zebra-network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ordered-map = "0.4.2"
pin-project = "1.1.3"
rand = "0.8.5"
rayon = "1.7.0"
regex = "1.10.0"
regex = "1.10.2"
serde = { version = "1.0.188", features = ["serde_derive"] }
tempfile = "3.8.0"
thiserror = "1.0.48"
Expand Down
2 changes: 1 addition & 1 deletion zebra-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ itertools = "0.11.0"
lazy_static = "1.4.0"
metrics = "0.21.1"
mset = "0.1.1"
regex = "1.10.0"
regex = "1.10.2"
rlimit = "0.10.1"
rocksdb = { version = "0.21.0", default-features = false, features = ["lz4"] }
semver = "1.0.20"
Expand Down
2 changes: 1 addition & 1 deletion zebra-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ itertools = "0.11.0"
proptest = "1.3.1"
once_cell = "1.18.0"
rand = "0.8.5"
regex = "1.10.0"
regex = "1.10.2"

tokio = { version = "1.33.0", features = ["full", "tracing", "test-util"] }
tower = { version = "0.4.13", features = ["util"] }
Expand Down
2 changes: 1 addition & 1 deletion zebra-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.29", optional = true
itertools = { version = "0.11.0", optional = true }

# These crates are needed for the search-issue-refs binary
regex = { version = "1.10.0", optional = true }
regex = { version = "1.10.2", optional = true }
# Avoid default openssl dependency to reduce the dependency tree and security alerts.
reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls"], optional = true }

Expand Down
2 changes: 1 addition & 1 deletion zebrad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ hex = "0.4.3"
hex-literal = "0.4.1"
jsonrpc-core = "18.0.0"
once_cell = "1.18.0"
regex = "1.10.0"
regex = "1.10.2"
insta = { version = "1.33.0", features = ["json"] }

# zebra-rpc needs the preserve_order feature, it also makes test results more stable
Expand Down

0 comments on commit 30093d2

Please sign in to comment.