Skip to content

Commit b52924f

Browse files
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
1 parent 7e40184 commit b52924f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clients/rust/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ rmp-serde = "1.0"
2626
serde = { version = "^1.0", features = ["derive"], optional = true }
2727
serde_json = "1.0"
2828
serde_with = { version = "^3.0", optional = true }
29-
solana-program = "> 1.14"
29+
solana-program = "^1.17"
3030
thiserror = "^1.0"
3131

3232
kaigan = { version = "0.2.6", features = ["serde"], optional = false }
3333

3434
[dev-dependencies]
3535
assert_matches = "1.5.0"
36-
solana-program-test = "> 1.14"
37-
solana-sdk = "> 1.14"
36+
solana-program-test = "^1.17"
37+
solana-sdk = "^1.17"

0 commit comments

Comments
 (0)