From 189647641ca176289fa85d5ffdd86ce364904383 Mon Sep 17 00:00:00 2001 From: acheron Date: Sun, 30 Mar 2025 22:37:59 +0200 Subject: [PATCH 1/2] lang: Remove `bytemuck_derive` version requirement --- lang/Cargo.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lang/Cargo.toml b/lang/Cargo.toml index 17f7550655..db6d437f5d 100644 --- a/lang/Cargo.toml +++ b/lang/Cargo.toml @@ -58,8 +58,3 @@ borsh = "0.10.3" bytemuck = "1" solana-program = "2" thiserror = "1" - -# v1.9 specifies `rust-version = "1.84"`, which causes compatibility issues with Solana build -# tools' Rust version (1.79.0 at the time of writing this comment). -# TODO: Remove when the Solana version we use comes with Rust version >= 1.84 -bytemuck_derive = ">1.0.0, <1.9" From 74857a572624592ffe74a58f5dbb557774e022a0 Mon Sep 17 00:00:00 2001 From: acheron Date: Sun, 30 Mar 2025 22:38:22 +0200 Subject: [PATCH 2/2] Update `Cargo.lock` --- Cargo.lock | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 92cda74b2b..92db1ffa26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -264,7 +264,6 @@ dependencies = [ "bincode", "borsh 0.10.3", "bytemuck", - "bytemuck_derive", "solana-program", "thiserror", ]