From 979a6e665f8b65886f772e5ba5db8cf534c19323 Mon Sep 17 00:00:00 2001 From: Christian Lewe Date: Mon, 6 Nov 2023 14:18:02 +0100 Subject: [PATCH] MSRV: Pin byteorder --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e93abf96..5b086dad 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,6 +104,8 @@ jobs: cargo update -p proc-macro2 --precise 1.0.65 # 1.8.0 requires cargo 1.60+ cargo update -p regex --precise 1.7.0 + # 1.5.0 uses edition 2021 + cargo update -p byteorder --precise 1.4.3 fi for f in $FEATURES; do echo "Features: $f" && cargo test --no-default-features --features="$f"; done cd simplicity-sys