rust-tss-esapi icon indicating copy to clipboard operation
rust-tss-esapi copied to clipboard

Updated to latest versions of dependencies

Open Firstyear opened this issue 10 months ago • 4 comments

Firstyear avatar Apr 03 '24 00:04 Firstyear

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

ionut-arm avatar Apr 06 '24 20:04 ionut-arm

Okay, so I'll update the Cargo.lock as well in that case? Are there other concerns?

Firstyear avatar Apr 08 '24 23:04 Firstyear

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!

ionut-arm avatar Apr 21 '24 22:04 ionut-arm

Done, Cargo.lock updated.

Firstyear avatar Apr 23 '24 00:04 Firstyear