From 35e93966505e04cb73c30d925356fc75aac49c3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Fri, 27 Sep 2024 04:01:12 +0300 Subject: [PATCH] Bump `hybrid-array` to v0.2.0-rc.10 --- .github/workflows/block-buffer.yml | 4 ++-- .github/workflows/block-padding.yml | 4 ++-- .github/workflows/dbl.yml | 4 ++-- .github/workflows/inout.yml | 4 ++-- .github/workflows/workspace.yml | 2 +- block-buffer/Cargo.toml | 2 +- block-padding/Cargo.toml | 4 ++-- dbl/Cargo.toml | 4 ++-- inout/Cargo.toml | 4 ++-- 9 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/block-buffer.yml b/.github/workflows/block-buffer.yml index 77852d6a..c9239652 100644 --- a/.github/workflows/block-buffer.yml +++ b/.github/workflows/block-buffer.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: rust: - - 1.65.0 # MSRV + - 1.81.0 # MSRV - stable target: - thumbv7em-none-eabi @@ -50,7 +50,7 @@ jobs: strategy: matrix: rust: - - 1.65.0 # MSRV + - 1.81.0 # MSRV - stable steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/block-padding.yml b/.github/workflows/block-padding.yml index 8ae86619..8b7f026d 100644 --- a/.github/workflows/block-padding.yml +++ b/.github/workflows/block-padding.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: rust: - - 1.65.0 # MSRV + - 1.81.0 # MSRV - stable target: - thumbv7em-none-eabi @@ -49,7 +49,7 @@ jobs: strategy: matrix: rust: - - 1.65.0 # MSRV + - 1.81.0 # MSRV - stable steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/dbl.yml b/.github/workflows/dbl.yml index c649809d..3a715806 100644 --- a/.github/workflows/dbl.yml +++ b/.github/workflows/dbl.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: rust: - - 1.65.0 # MSRV + - 1.81.0 # MSRV - stable target: - thumbv7em-none-eabi @@ -49,7 +49,7 @@ jobs: strategy: matrix: rust: - - 1.65.0 # MSRV + - 1.81.0 # MSRV - stable steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/inout.yml b/.github/workflows/inout.yml index 9d3ade2e..a62ec00a 100644 --- a/.github/workflows/inout.yml +++ b/.github/workflows/inout.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: rust: - - 1.65.0 # MSRV + - 1.81.0 # MSRV - stable target: - thumbv7em-none-eabi @@ -50,7 +50,7 @@ jobs: strategy: matrix: rust: - - 1.65.0 # MSRV + - 1.81.0 # MSRV - stable steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/workspace.yml b/.github/workflows/workspace.yml index d74c76ce..03a71bbe 100644 --- a/.github/workflows/workspace.yml +++ b/.github/workflows/workspace.yml @@ -20,7 +20,7 @@ jobs: - uses: RustCrypto/actions/cargo-cache@master - uses: dtolnay/rust-toolchain@master with: - toolchain: 1.72.0 # Pinned to prevent breakages + toolchain: 1.81.0 # Pinned to prevent breakages components: clippy - run: cargo clippy --all --all-features --exclude aarch64-dit -- -D warnings diff --git a/block-buffer/Cargo.toml b/block-buffer/Cargo.toml index 445dab06..36a00b8f 100644 --- a/block-buffer/Cargo.toml +++ b/block-buffer/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["block", "buffer"] categories = ["cryptography", "no-std"] edition = "2021" readme = "README.md" -rust-version = "1.65" +rust-version = "1.81" [dependencies] crypto-common = "0.2.0-rc.1" diff --git a/block-padding/Cargo.toml b/block-padding/Cargo.toml index 749e6959..20afeea8 100644 --- a/block-padding/Cargo.toml +++ b/block-padding/Cargo.toml @@ -5,7 +5,7 @@ description = "Padding and unpadding of messages divided into blocks." authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.81" documentation = "https://docs.rs/block-padding" repository = "https://github.com/RustCrypto/utils" keywords = ["padding", "pkcs7", "ansix923", "iso7816"] @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"] readme = "README.md" [dependencies] -hybrid-array = "0.2.0-rc.9" +hybrid-array = "0.2.0-rc.10" [features] std = [] diff --git a/dbl/Cargo.toml b/dbl/Cargo.toml index ef2c84be..4aa716aa 100644 --- a/dbl/Cargo.toml +++ b/dbl/Cargo.toml @@ -8,9 +8,9 @@ documentation = "https://docs.rs/dbl" repository = "https://github.com/RustCrypto/utils" keywords = ["crypto", "dbl", "gf", "galois"] edition = "2021" -rust-version = "1.65" +rust-version = "1.81" readme = "README.md" [dependencies] -hybrid-array = "0.2.0-rc.9" +hybrid-array = "0.2.0-rc.10" diff --git a/inout/Cargo.toml b/inout/Cargo.toml index f9240c39..ac61e812 100644 --- a/inout/Cargo.toml +++ b/inout/Cargo.toml @@ -5,7 +5,7 @@ description = "Custom reference types for code generic over in-place and buffer- authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.56" +rust-version = "1.81" documentation = "https://docs.rs/inout" repository = "https://github.com/RustCrypto/utils" keywords = ["custom-reference"] @@ -13,7 +13,7 @@ readme = "README.md" [dependencies] block-padding = { version = "0.4.0-rc.0", path = "../block-padding", optional = true } -hybrid-array = "0.2.0-rc.9" +hybrid-array = "0.2.0-rc.10" [features] std = ["block-padding/std"]