Skip to content

Commit

Permalink
bump hybrid-array from 0.2.0-rc.8 to 0.2.0-rc.9 (#1085)
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov authored Jun 24, 2024
1 parent cb18faa commit 3867a73
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion block-buffer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ impl<BS: BlockSizes> BlockBuffer<BS, Lazy> {
if buffer[1..][pos as usize..].iter().any(|&b| b != 0) {
return Err(Error);
}
let buf = Array::clone_from_slice(&buffer[1..]);
let buf = Array::try_from(&buffer[1..]).expect("slice has correct length");
Ok(Self {
buffer: MaybeUninit::new(buf),
pos,
Expand Down
2 changes: 1 addition & 1 deletion block-padding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
readme = "README.md"

[dependencies]
hybrid-array = "0.2.0-rc.8"
hybrid-array = "0.2.0-rc.9"

[features]
std = []
Expand Down
2 changes: 1 addition & 1 deletion dbl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ rust-version = "1.65"
readme = "README.md"

[dependencies]
hybrid-array = "0.2.0-rc.8"
hybrid-array = "0.2.0-rc.9"

2 changes: 1 addition & 1 deletion inout/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ readme = "README.md"

[dependencies]
block-padding = { version = "=0.4.0-pre.4", path = "../block-padding", optional = true }
hybrid-array = "0.2.0-rc.8"
hybrid-array = "0.2.0-rc.9"

[features]
std = ["block-padding/std"]
Expand Down

0 comments on commit 3867a73

Please sign in to comment.