From a797ddb15853ef2a77050e9c3b363d774d3328de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 14:10:13 +0000 Subject: [PATCH] Bump bytemuck from 1.14.0 to 1.19.0 Bumps [bytemuck](https://github.com/Lokathor/bytemuck) from 1.14.0 to 1.19.0. - [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md) - [Commits](https://github.com/Lokathor/bytemuck/compare/v1.14.0...v1.19.0) --- updated-dependencies: - dependency-name: bytemuck dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- adapters/risc0/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 423ca8ad9..c04ec636c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1173,9 +1173,9 @@ checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" [[package]] name = "bytemuck" -version = "1.14.0" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" +checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d" dependencies = [ "bytemuck_derive", ] diff --git a/adapters/risc0/Cargo.toml b/adapters/risc0/Cargo.toml index 1c1469f36..0bc2b0491 100644 --- a/adapters/risc0/Cargo.toml +++ b/adapters/risc0/Cargo.toml @@ -19,7 +19,7 @@ risc0-zkvm-platform = { workspace = true } risc0-zkp = { workspace = true, optional = true } risc0-circuit-rv32im = { workspace = true, optional = true } serde = { workspace = true } -bytemuck = "1.13.1" +bytemuck = "1.19.0" once_cell = { version = "1.19.0", optional = true } parking_lot = { version = "0.12.1", optional = true } sov-zk-cycle-utils = { path = "../../utils/zk-cycle-utils", version = "0.3" }