From 904689f084d520b143db05450c6797e837f3f89d Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Sun, 28 Jan 2024 10:07:04 -0800 Subject: [PATCH 1/3] ci: upgrade to actions/checkout@v4 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3eebe4db..592b8337 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: bench: test build benchmarks steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.rust }} @@ -66,7 +66,7 @@ jobs: target: thumbv6m-none-eabi steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.rust }} @@ -79,7 +79,7 @@ jobs: clippy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@beta with: components: clippy @@ -88,7 +88,7 @@ jobs: miri: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@nightly with: components: miri @@ -98,7 +98,7 @@ jobs: name: Check MSRV and minimal-versions runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master with: toolchain: nightly From 382a45c8856422c6889c2d32f3c9ce9ba22d2450 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Sun, 28 Jan 2024 10:07:31 -0800 Subject: [PATCH 2/3] Upgrade dev-dep itertools to 0.12 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 41c4b60a..d4903ad3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ default-features = false features = ["raw"] [dev-dependencies] -itertools = "0.11" +itertools = "0.12" rand = {version = "0.8", features = ["small_rng"] } quickcheck = { version = "1.0", default-features = false } fnv = "1.0" From 34a7af7106642bfc376e74e8ba3b596b3d20a4fa Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Sun, 28 Jan 2024 10:25:55 -0800 Subject: [PATCH 3/3] Allow `clippy::style` --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index d4903ad3..bf4fe206 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,3 +59,6 @@ rustdoc-args = ["--cfg", "docsrs"] [workspace] members = ["test-nostd", "test-serde"] + +[lints.clippy] +style = "allow"