You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[dependencies.solana-program]
version = ">=1.17.17,<=2"
This is incorrect because it allows solana-program@2.
This should be
[dependencies.solana-program]
version = ">=1.17.17,<2"
solana-client@<2 requires these packages and cannot be used anymore. solana-client@>=2 contains compile errors.
Proposed Solution
Yank all crates that could rely on solana-program@2 now that it's published.
Workaround
You can get the lock file to not use solana-program@2 if you first add solana-sdk, build, and then add solana-client. This is a very fickle solution and could break whenever a new update is pushed to any crate.
The text was updated successfully, but these errors were encountered:
Problem
[email protected]
,[email protected]
,[email protected]
,[email protected]
, and[email protected]
all depend onsolana-program
withThis is incorrect because it allows
solana-program@2
.This should be
solana-client@<2
requires these packages and cannot be used anymore.solana-client@>=2
contains compile errors.Proposed Solution
Yank all crates that could rely on
solana-program@2
now that it's published.Workaround
You can get the lock file to not use
solana-program@2
if you first addsolana-sdk
, build, and then addsolana-client
. This is a very fickle solution and could break whenever a new update is pushed to any crate.The text was updated successfully, but these errors were encountered: