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
# Updates specific transitive dependencies to the versions we want
#
set -e
echo "Updating transitive dependencies..."
# Update curve25519-dalek to version 3.2.1
echo "Updating curve25519-dalek to version 3.2.1..."
cargo update [email protected] --precise 3.2.1 || echo "Failed to update curve25519-dalek, it may already be at the desired version or there may be a dependency conflict."
# Update solana-feature-set to version 2.2.4
echo "Updating solana-feature-set to version 2.2.4..."
cargo update solana-feature-set --precise 2.2.4 || echo "Failed to update solana-feature-set, it may already be at the desired version or there may be a dependency conflict."