
* chore: update crate version to v0.9.0 * chore: remove deprecated re-exports * chore: remove Box re-export * feat: implement pure-Rust keygen and signing for RpoFalcon512 (#285) * feat: add reproducible builds (#296) * fix: address a few issues for migrating Miden VM (#298) * feat: add RngCore supertrait for FeltRng (#299) --------- Co-authored-by: Al-Kindi-0 <82364884+Al-Kindi-0@users.noreply.github.com> Co-authored-by: Paul-Henry Kajfasz <42912740+phklive@users.noreply.github.com>
13 lines
373 B
Bash
Executable file
13 lines
373 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Check rust-toolchain file
|
|
TOOLCHAIN_VERSION=$(cat rust-toolchain)
|
|
|
|
# Check workspace Cargo.toml file
|
|
CARGO_VERSION=$(cat Cargo.toml | grep "rust-version" | cut -d '"' -f 2)
|
|
if [ "$CARGO_VERSION" != "$TOOLCHAIN_VERSION" ]; then
|
|
echo "Mismatch in Cargo.toml: Expected $TOOLCHAIN_VERSION, found $CARGO_VERSION"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Rust versions match ✅"
|