Skip to content

Commit 137820d

Browse files
committed
Use released version of hybrid-array v0.3
1 parent c7daf85 commit 137820d

File tree

10 files changed

+7
-18
lines changed

10 files changed

+7
-18
lines changed

.github/workflows/block-buffer.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ jobs:
4040
- run: cargo build --target ${{ matrix.target }}
4141

4242
minimal-versions:
43-
# Temporarily disabled until hybrid-array 0.3.0-pre is published
44-
if: false
4543
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
4644
with:
4745
working-directory: ${{ github.workflow }}

.github/workflows/block-padding.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ jobs:
4040
- run: cargo build --target ${{ matrix.target }}
4141

4242
minimal-versions:
43-
# Temporarily disabled until hybrid-array 0.3.0-pre is published
44-
if: false
4543
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
4644
with:
4745
working-directory: ${{ github.workflow }}

.github/workflows/dbl.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ jobs:
4040
- run: cargo build --target ${{ matrix.target }}
4141

4242
minimal-versions:
43-
# Temporarily disabled until hybrid-array 0.3.0-pre is published
44-
if: false
45-
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
4643
with:
4744
working-directory: ${{ github.workflow }}
4845

.github/workflows/inout.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ jobs:
4141
- run: cargo build --features block-padding --target ${{ matrix.target }}
4242

4343
minimal-versions:
44-
# Temporarily disabled until hybrid-array 0.3.0-pre is published
45-
if: false
4644
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
4745
with:
4846
working-directory: ${{ github.workflow }}

Cargo.lock

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,3 @@ incompatible-rust-versions = "allow"
2323

2424
[profile.dev]
2525
opt-level = 2
26-
27-
[patch.crates-io]
28-
hybrid-array = { git = "https://github.com/RustCrypto/hybrid-array" }

block-buffer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ edition = "2024"
1313
rust-version = "1.85"
1414

1515
[dependencies]
16-
hybrid-array = "0.3.0-pre"
16+
hybrid-array = "0.3"
1717
zeroize = { version = "1.4", optional = true, default-features = false }
1818

1919
[dev-dependencies]

block-padding/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ categories = ["cryptography", "no-std"]
1313
readme = "README.md"
1414

1515
[dependencies]
16-
hybrid-array = "0.3.0-pre"
16+
hybrid-array = "0.3"

dbl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ rust-version = "1.85"
1212
readme = "README.md"
1313

1414
[dependencies]
15-
hybrid-array = "0.3.0-pre"
15+
hybrid-array = "0.3"

inout/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ readme = "README.md"
1313

1414
[dependencies]
1515
block-padding = { version = "0.4.0-rc.2", path = "../block-padding", optional = true }
16-
hybrid-array = "0.3.0-pre"
16+
hybrid-array = "0.3"
1717

1818
[package.metadata.docs.rs]
1919
all-features = true

0 commit comments

Comments
 (0)