paritytech / substrate

Substrate: The platform for blockchain innovators
Apache License 2.0
8.39k stars 2.65k forks source link

Update to `x25519-dalek` v2.0.0 #14797

Closed ggwpez closed 1 year ago

ggwpez commented 1 year ago

changes:

Substrate master CI is red since this cargo build line here pulls in version 2.0.0 instead of the pre-release, which makes the build fail.
https://github.com/paritytech/substrate/blob/aeb8c3107f79afef081dde2b9aa2866a6596f6ba/scripts/ci/node-template-release/src/main.rs#L237

I will try to see if it makes sense to copy the Substrate Cargo.lock into the template release build, such that it wont blindly update deps when building. -> Does not work since the lockfile of Substrate needs to be updated to remove the unused deps, but --locked would prevent that...

bkchr commented 1 year ago

Duplicate of: https://github.com/paritytech/substrate/pull/14776