From 9501066f4c7c70eec97a37fe2cff4403b153dc1b Mon Sep 17 00:00:00 2001 From: David Cook Date: Mon, 21 Oct 2024 15:07:29 -0500 Subject: [PATCH 1/2] Upgrade Node.js in CI --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5c7d9bf27c2..554a025aff1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -67,6 +67,9 @@ jobs: toolchain: nightly override: true target: wasm32-unknown-unknown + - uses: actions/setup-node@v4 + with: + node-version: "20" - uses: jetli/wasm-pack-action@v0.4.0 - name: build with default features run: wasm-pack build From f65a17ad3b73a221a78de1b26c5a41449563751c Mon Sep 17 00:00:00 2001 From: Brandon Pitman Date: Thu, 17 Oct 2024 11:12:50 -0700 Subject: [PATCH 2/2] Fix clippy warnings in README.md (!). --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 251dc7c0e5f..7c7e21bfe5d 100644 --- a/README.md +++ b/README.md @@ -58,8 +58,8 @@ from rust, even when opting out of `algo-all`. algorithm features. Enabled by default. * *kem-all*: Enables `kem-dh-p256-hkdf-sha256`, - `kem-dh-p384-hkdf-sha384`, `kem-dh-p521-hkdf-sha512`, and - `kem-x25519-hkdf-sha256` algorithm features. Enabled by default. + `kem-dh-p384-hkdf-sha384`, `kem-dh-p521-hkdf-sha512`, and + `kem-x25519-hkdf-sha256` algorithm features. Enabled by default. * *serde*: enables derived serde serialization and deserialization for all public structs and enums. Disabled by default.