Skip to content

Commit 38c0731

Browse files
committed
Fix: Lock down rand_chacha dependency version t0 0.3.1
Locking down rand_chacha to highest working version, in order to make this crate buildable. Version of dependency rand_chacha was unfortunately not locked down properly in Cargo.toml, in earler development. Was just "0". New version of rand_chacha was released with API-breaking changes, which broke monkey_test.
1 parent a705cf5 commit 38c0731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ maintenance = { status = "actively-developed" }
1818
[dependencies]
1919
num-traits = "0.2"
2020
rand = "0.8.5"
21-
rand_chacha = "0"
21+
rand_chacha = "0.3.1"
2222
panic-message = "0.3.0"
2323

2424
[dev-dependencies]

0 commit comments

Comments
 (0)