Skip to content

Commit

Permalink
Merge pull request #2 from oligamiq/master
Browse files Browse the repository at this point in the history
repair build failed
  • Loading branch information
dbartussek committed Jan 30, 2024
2 parents 9d52001 + 20743fa commit 0996b88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Dario Bartussek <d.bartussek@gmail.com>"]
edition = "2018"

[dependencies]
packed_simd_2 = { version = "0.3.4", features = ["into_bits"] }
packed_simd_2 = { version = "0.3.9", features = ["into_bits"], package = "packed_simd" }

rand_core = "0.5.1"

Expand Down
2 changes: 1 addition & 1 deletion src/rand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ impl ShiShuARng {
}
}

fn get_byte(&mut self) -> u8 {
pub fn get_byte(&mut self) -> u8 {
if self.buffer_index >= STATE_WRAPPER_BUFFER_SIZE {
self.buffer_index = 0;

Expand Down

0 comments on commit 0996b88

Please sign in to comment.