rust-tss-esapi
rust-tss-esapi copied to clipboard
Updated to latest versions of dependencies
I wonder if we need to update the lock file as well?
That was my thought as well. I regret not putting in the effort to write a script to update that file automatically from the current Cargo.lock
.... So find a short script for that below.
#!/bin/bash
export MSRV=1.66.0
export EXEC_DIR="tss-esapi"
if [[ "$(basename `pwd`)" != "$EXEC_DIR" ]]; then
echo "Script should be run from ./$EXEC_DIR ."
exit 1
fi
rustup toolchain install $MSRV
cargo +$MSRV build
cp ../Cargo.lock tests/Cargo.lock.frozen
Also, find attached the regenerated lockfile for this change. Cargo.lock.frozen.zip
Okay, so I'll update the Cargo.lock as well in that case? Are there other concerns?
Okay, so I'll update the Cargo.lock as well in that case? Are there other concerns?
Sounds like a plan, if you have time for it!
Done, Cargo.lock updated.