Skip to content

Commit

Permalink
Update rand requirement from 0.7.3 to 0.8.2 (#10)
Browse files Browse the repository at this point in the history
* Update rand requirement from 0.7.3 to 0.8.2

Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version.
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.7.3...0.8.2)

Signed-off-by: dependabot[bot] <[email protected]>

* Make duplicate deps not fail CI

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: adumbidiot <[email protected]>
  • Loading branch information
dependabot[bot] and adumbidiot authored Jan 18, 2021
1 parent b3f81e3 commit 68a1d28
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ js-sys = { version = "0.3.45", optional = true }
wasm-bindgen = { version = "0.2.68", optional = true }

[dev-dependencies]
rand = "0.7.3"
rand = "0.8.2"
criterion = "0.3.3"

[features]
Expand Down
5 changes: 4 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ allow = [ "Apache-2.0", "MIT" ]
exceptions = []

[bans]
multiple-versions = "deny"
# This crate will have no dependencies in a release native build.
# It only needs dependencies for testing and wasm support.
# Set this to warn only to lessen noise.
multiple-versions = "warn"
highlight = "all"
skip = []

Expand Down

0 comments on commit 68a1d28

Please sign in to comment.