-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: Optimise from_rng impl for WyRand (#15)
- Loading branch information
1 parent
336b380
commit 89ee257
Showing
4 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wyrand" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
edition = "2021" | ||
authors = ["Gonçalo Rica Pais da Silva <[email protected]>"] | ||
description = "A fast & portable non-cryptographic pseudorandom number generator and hashing algorithm" | ||
|
@@ -35,6 +35,7 @@ serde = { version = "1.0", features = ["derive"], optional = true } | |
[dev-dependencies] | ||
criterion = "0.5" | ||
serde_test = "1.0" | ||
rand = "0.8" | ||
|
||
[[bench]] | ||
name = "rand_bench" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters