chore(deps): bump borsh, solana-program, spl-token-2022-interface, solana-address#31
Merged
mikemaccana merged 1 commit intoMay 15, 2026
Conversation
…lana-address Workspace bumps: - borsh 1.5.7 -> 1.6.1 - solana-program 3.0 -> 4.0 - spl-token-2022-interface 2.0.0 -> 2.1.0 - solana-address 2.1.0 -> 2.6.0 Same bumps applied to basics/counter/mpl-stack and basics/repository-layout/native/program Cargo.toml files. Cargo.lock regenerated from scratch. cargo check --workspace clean. Replaces solana-developers#25 (which was opened from the old upstream solana-developers/program-examples branch and could no longer merge cleanly because of the tokens/token-2022 -> tokens/token-extensions rename and other main divergence).
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replaces #25.
The original PR was opened from
solana-developers/program-examples:main(the pre-fork upstream) and went un-mergeable as soon as this repo diverged — thetokens/token-2022/*→tokens/token-extensions/*rename in particular meant the workspacememberslists no longer matched.This PR applies the same four version bumps directly on top of current
main, withCargo.lockregenerated from scratch.Workspace
Cargo.toml:borsh1.5.7 → 1.6.1solana-program3.0 → 4.0spl-token-2022-interface2.0.0 → 2.1.0solana-address2.1.0 → 2.6.0Per-crate
Cargo.toml(same set of bumps where pinned):basics/counter/mpl-stack/Cargo.tomlbasics/repository-layout/native/program/Cargo.tomlVerification:
cargo check --workspace— clean (warnings only, all pre-existing).cargo clean -p counter-mpl-stack -p repository-layout-program && cargo check -p ...— clean rebuild of the two non-workspace-deps crates.#25should be closed once this is in.