8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
19 lines
488 B
Bash
Executable file
19 lines
488 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# This updates cargo-lock.patch for the diesel version listed in default.nix.
|
|
|
|
set -eu -o verbose
|
|
|
|
here=$PWD
|
|
version=$(cat default.nix | grep '^ version = "' | cut -d '"' -f 2)
|
|
checkout=$(mktemp -d)
|
|
git clone -b "cargo-geiger-$version" --depth=1 https://github.com/rust-secure-code/cargo-geiger "$checkout"
|
|
cd "$checkout"
|
|
|
|
rm -f rust-toolchain
|
|
cargo generate-lockfile
|
|
git add -f Cargo.lock
|
|
git diff HEAD -- Cargo.lock > "$here"/cargo-lock.patch
|
|
|
|
cd "$here"
|
|
rm -rf "$checkout"
|