From a627b1b8f12e2c17d44639ec0343250af6189808 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 14:29:05 +0000 Subject: [PATCH] Bump arbitrary from 1.4.0 to 1.4.1 Bumps [arbitrary](https://github.com/rust-fuzz/arbitrary) from 1.4.0 to 1.4.1. - [Changelog](https://github.com/rust-fuzz/arbitrary/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-fuzz/arbitrary/compare/v1.4.0...v1.4.1) --- updated-dependencies: - dependency-name: arbitrary dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- fuzzer/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fbd4d861..199ef70a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,9 +19,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" [[package]] name = "arbitrary" -version = "1.4.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "775a8770d29db3dadcb858482cc240af7b2ffde4ac4de67d1d4955728103f0e2" +checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" dependencies = [ "derive_arbitrary", ] diff --git a/Cargo.toml b/Cargo.toml index 85ed39a1..a573adb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ bitvec = { version = "1", default-features = false, features = ["alloc"], option bytes = { version = "1", default-features = false, optional = true } byte-slice-cast = { version = "1.2.2", default-features = false } generic-array = { version = "0.14.7", optional = true } -arbitrary = { version = "1.4.0", features = ["derive"], optional = true } +arbitrary = { version = "1.4.1", features = ["derive"], optional = true } impl-trait-for-tuples = "0.2.2" [dev-dependencies] diff --git a/fuzzer/Cargo.toml b/fuzzer/Cargo.toml index c09ad16e..b45ce200 100644 --- a/fuzzer/Cargo.toml +++ b/fuzzer/Cargo.toml @@ -9,5 +9,5 @@ publish = false [dependencies] parity-scale-codec = { path = "..", features = ["derive", "bit-vec", "fuzz"] } honggfuzz = "0.5.56" -arbitrary = { version = "1.4.0", features = ["derive"] } +arbitrary = { version = "1.4.1", features = ["derive"] } bitvec = { version = "1", features = ["alloc"] }