fix(dependencies): Update dependency versions in Cargo.toml to resolve conflicts #56
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.
Description
This Pull Request updates the dependency versions in the
Cargo.toml
file to resolve conflicts between thespl-token
andsolana-account-decoder
packages. Previous dependency versions caused a version selection error forspl-token
, preventing the project from building.Changes
Cargo.toml
to resolve the version conflict.Reason for Changes
An error occurred during the project build process:
This error indicated a conflict between the versions of the
spl-token
andsolana-account-decoder
packages. Updating the dependencies resolved this conflict.Tests
All tests passed successfully after making these changes. The tests were run using the
cargo test
command.Documentation
This Pull Request does not require any documentation updates, as the changes are limited to dependency versions and do not affect the API functionality or user documentation.
Please consider merging this Pull Request into the main branch. Thank you!