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...
changes:
x25519-dalek
dependency.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...