Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: resolve Anchor dependency conflicts by aligning solana-program v…
…ersions

- 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
  • Loading branch information
hasip-timurtas committed Jun 23, 2025
commit b52924ff048561846e39342951a02ab8d9bcff5b
6 changes: 3 additions & 3 deletions clients/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"