From b0555c0e61cd6576234e39170d1accdda342c293 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 22:08:34 +0000 Subject: [PATCH] build(deps): bump the test group with 1 update (#7876) * build(deps): bump the test group with 1 update Bumps the test group with 1 update: [tempfile](https://github.com/Stebalien/tempfile). - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) --- updated-dependencies: - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: test ... Signed-off-by: dependabot[bot] * add duplicated dependency --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alfredo Garcia --- Cargo.lock | 19 ++++++++++++++----- deny.toml | 3 +++ zebra-network/Cargo.toml | 2 +- zebra-state/Cargo.toml | 2 +- zebra-test/Cargo.toml | 2 +- zebrad/Cargo.toml | 2 +- 6 files changed, 21 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2729d617..ca18b6f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3381,6 +3381,15 @@ dependencies = [ "bitflags 1.3.2", ] +[[package]] +name = "redox_syscall" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" +dependencies = [ + "bitflags 1.3.2", +] + [[package]] name = "redox_users" version = "0.4.3" @@ -3585,9 +3594,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.20" +version = "0.38.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67ce50cb2e16c2903e30d1cbccfd8387a74b9d4c938b6a4c5ec6cc7556f7a8a0" +checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3" dependencies = [ "bitflags 2.4.1", "errno", @@ -4176,13 +4185,13 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tempfile" -version = "3.8.0" +version = "3.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" +checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" dependencies = [ "cfg-if 1.0.0", "fastrand", - "redox_syscall 0.3.5", + "redox_syscall 0.4.1", "rustix", "windows-sys 0.48.0", ] diff --git a/deny.toml b/deny.toml index 94dab561..88e07f9b 100644 --- a/deny.toml +++ b/deny.toml @@ -67,6 +67,9 @@ skip-tree = [ # this duplicate dependency currently only exists in testing builds { name = "regex-syntax", version = "=0.6.29" }, + # wait for `parking_lot` crate inside `jsonrpc-http-server` to upgrade + { name = "redox_syscall", version = "=0.2.16" }, + # ZF crates # wait for indexmap, toml_edit, serde_json, tower to upgrade diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index 72fee79f..1ebe4633 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -57,7 +57,7 @@ rand = "0.8.5" rayon = "1.7.0" regex = "1.10.2" serde = { version = "1.0.190", features = ["serde_derive"] } -tempfile = "3.8.0" +tempfile = "3.8.1" thiserror = "1.0.48" futures = "0.3.29" diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index 9656875b..72d227af 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -60,7 +60,7 @@ rlimit = "0.10.1" rocksdb = { version = "0.21.0", default-features = false, features = ["lz4"] } semver = "1.0.20" serde = { version = "1.0.190", features = ["serde_derive"] } -tempfile = "3.8.0" +tempfile = "3.8.1" thiserror = "1.0.48" rayon = "1.7.0" diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index e91e73ba..6cd966fd 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -44,4 +44,4 @@ tracing-error = "0.2.0" tracing = "0.1.39" [dev-dependencies] -tempfile = "3.8.0" +tempfile = "3.8.1" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index ec14a481..d5297bc3 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -242,7 +242,7 @@ insta = { version = "1.33.0", features = ["json"] } # zebra-rpc needs the preserve_order feature, it also makes test results more stable serde_json = { version = "1.0.107", features = ["preserve_order"] } -tempfile = "3.8.0" +tempfile = "3.8.1" hyper = { version = "0.14.27", features = ["http1", "http2", "server"]} tracing-test = { version = "0.2.4", features = ["no-env-filter"] }