Skip to content

Commit 7847752

Browse files
committed
feat: re-export p3_keccak::VECTOR_LEN
1 parent 9e66fbb commit 7847752

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.22.2 (2026-02-01)
2+
3+
- Re-exported `p3_keccak::VECTOR_LEN`.
4+
15
## 0.22.1 (2026-02-01)
26

37
- Re-exported additional Plonky3 modules and structs.

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["crypto", "hash", "merkle", "miden"]
1111
license = "MIT OR Apache-2.0"
1212
repository = "https://github.com/0xMiden/crypto"
1313
rust-version = "1.90"
14-
version = "0.22.1"
14+
version = "0.22.2"
1515

1616
[workspace.dependencies]
1717
miden-crypto-derive = { path = "miden-crypto-derive", version = "0.22" }

miden-crypto/src/hash/keccak/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ mod tests;
1515
// ================================================================================================
1616

1717
/// Re-export of the Keccak hasher from Plonky3 for use in the prover config downstream.
18-
pub use p3_keccak::{Keccak256Hash, KeccakF};
18+
pub use p3_keccak::{Keccak256Hash, KeccakF, VECTOR_LEN};
1919

2020
// KECCAK256 DIGEST
2121
// ================================================================================================

0 commit comments

Comments
 (0)