Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dwps: Unpin Solana dependencies
Browse files Browse the repository at this point in the history
#### Problem

It's very useful to run downstream tests with newer versions of the
Solana crates to catch unwanted breakage. Mollusk pins some of its
Solana crate dependencies to 2.1.0.

The token repo uses mollusk for its testing framework, but because of
the pinning in mollusk, it's impossible to run downstream tests on it.

#### Summary of changes

This might be totally off-base, and I might be missing something
important, but it'll be way more flexible and easier if mollusk unpins
its dependencies.
joncinque committed Jan 9, 2025
1 parent c015230 commit d847516
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -42,13 +42,13 @@ rayon = "1.10.0"
serde = "1.0.203"
serde_json = "1.0.117"
serial_test = "2.0"
solana-bpf-loader-program = "=2.1.0"
solana-compute-budget = "=2.1.0"
solana-logger = "2.1"
solana-program = "2.1"
solana-program-runtime = "=2.1.0"
solana-stake-program = "=2.1.0"
solana-system-program = "=2.1.0"
solana-sdk = "2.1"
solana-timings = "=2.1.0"
solana-bpf-loader-program = "2.1.0"
solana-compute-budget = "2.1.0"
solana-logger = "2.1.0"
solana-program = "2.1.0"
solana-program-runtime = "2.1.0"
solana-stake-program = "2.1.0"
solana-system-program = "2.1.0"
solana-sdk = "2.1.0"
solana-timings = "2.1.0"
thiserror = "1.0.64"

0 comments on commit d847516

Please sign in to comment.