From edfd4c236d76c91b3599c333ae8456ed4f577064 Mon Sep 17 00:00:00 2001 From: Daniela Brozzoni Date: Fri, 29 Sep 2023 15:20:45 +0200 Subject: [PATCH 1/2] fix: Add the pinning of time/cc in README Should have been in #1135, sorry. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index d3c56f16..d454e642 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,10 @@ cargo update -p rustls-webpki:0.100.3 --precise "0.100.1" cargo update -p rustls-webpki:0.101.6 --precise "0.101.1" # zip 0.6.3 has MSRV 1.59.0+ cargo update -p zip:0.6.6 --precise "0.6.2" +# time 0.3.14 has MSRV 1.59.0+ +cargo update -p time --precise "0.3.13" +# cc 1.0.82 has MSRV 1.61.0+ +cargo update -p cc --precise "1.0.81" ``` ## License From f28e665c7dd1d929f0b4f80a79caecafaf4b385e Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Sat, 30 Sep 2023 17:56:34 -0500 Subject: [PATCH 2/2] ci: update code_coverage workflow to use rust stable version --- .github/workflows/code_coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 051db5fc..c9fab32d 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -19,7 +19,7 @@ jobs: - name: Install Rust toolchain uses: actions-rs/toolchain@v1 with: - toolchain: "1.67.0" + toolchain: stable override: true profile: minimal components: llvm-tools-preview