From b52924ff048561846e39342951a02ab8d9bcff5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hasip=20Timurta=C5=9F?= Date: Mon, 23 Jun 2025 19:04:48 +0200 Subject: [PATCH] fix: resolve Anchor dependency conflicts by aligning solana-program versions - Update solana-program from '> 1.14' to '^1.17' in clients/rust - Update solana-program-test and solana-sdk to '^1.17' for consistency - Resolves Pubkey type conflicts between Anchor and MPL Core - Fixes issue where users couldn't build Anchor projects with mpl-core Fixes #196 --- clients/rust/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/rust/Cargo.toml b/clients/rust/Cargo.toml index 3731e587..8cca17de 100644 --- a/clients/rust/Cargo.toml +++ b/clients/rust/Cargo.toml @@ -26,12 +26,12 @@ rmp-serde = "1.0" serde = { version = "^1.0", features = ["derive"], optional = true } serde_json = "1.0" serde_with = { version = "^3.0", optional = true } -solana-program = "> 1.14" +solana-program = "^1.17" thiserror = "^1.0" kaigan = { version = "0.2.6", features = ["serde"], optional = false } [dev-dependencies] assert_matches = "1.5.0" -solana-program-test = "> 1.14" -solana-sdk = "> 1.14" +solana-program-test = "^1.17" +solana-sdk = "^1.17"