From 81a1433f1465980751b1e2a612b22eb38da3526e Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Mon, 6 Jan 2025 11:29:17 -0600 Subject: [PATCH] ci: pin msrv dep version for rustls and hashbrown --- .github/workflows/cont_integration.yml | 4 ++-- .github/workflows/nightly_docs.yml | 2 +- README.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index a7f12c393..bb9234097 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -64,8 +64,8 @@ jobs: cargo update -p regex --precise "1.7.3" cargo update -p security-framework-sys --precise "2.11.1" cargo update -p url --precise "2.5.0" - cargo update -p rustls@0.23.18 --precise "0.23.17" - cargo update -p hashbrown@0.15.1 --precise "0.15.0" + cargo update -p rustls@0.23.20 --precise "0.23.19" + cargo update -p hashbrown@0.15.2 --precise "0.15.0" - name: Build run: cargo build --features bitcoin/std,miniscript/std,${{ matrix.features }} --no-default-features - name: Clippy diff --git a/.github/workflows/nightly_docs.yml b/.github/workflows/nightly_docs.yml index 1156c9dcf..c0ebe129d 100644 --- a/.github/workflows/nightly_docs.yml +++ b/.github/workflows/nightly_docs.yml @@ -28,7 +28,7 @@ jobs: - name: Install Rust toolchain uses: dtolnay/rust-toolchain@nightly with: - components: clippy + components: clippy, rustfmt - name: Build docs run: cargo rustdoc --verbose --features=compiler,electrum,esplora,use-esplora-blocking,compact_filters,rpc,key-value-db,sqlite,all-keys,verify,hardware-signer -- --cfg docsrs -Dwarnings - name: Upload artifact diff --git a/README.md b/README.md index 1e68f70ff..2a33ec1a6 100644 --- a/README.md +++ b/README.md @@ -215,6 +215,6 @@ cargo update -p home --precise "0.5.5" cargo update -p regex --precise "1.7.3" cargo update -p security-framework-sys --precise "2.11.1" cargo update -p url --precise "2.5.0" -cargo update -p rustls@0.23.18 --precise "0.23.17" -cargo update -p hashbrown@0.15.1 --precise "0.15.0" +cargo update -p rustls@0.23.20 --precise "0.23.19" +cargo update -p hashbrown@0.15.2 --precise "0.15.0" ```