From 508d23dbe17e65ad69a0cfdb0bb70df82abf8d34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Mar 2023 04:08:17 +0000 Subject: [PATCH] Update rand_os requirement from 0.1 to 0.2 in /rust Updates the requirements on [rand_os](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](https://github.com/rust-random/rand/compare/rand_os-0.1.0...rand_os-0.2.2) --- updated-dependencies: - dependency-name: rand_os dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rust/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index ffa7f78a..df680e2e 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -38,7 +38,7 @@ serde = { version = "1.0", features = ["derive"] } # non-wasm [target.'cfg(not(all(target_arch = "wasm32", not(target_os = "emscripten"))))'.dependencies] -rand_os = "0.1" +rand_os = "0.2" noop_proc_macro = "0.3.0" getrandom = "0.2.3" @@ -46,7 +46,7 @@ getrandom = "0.2.3" [target.'cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))'.dependencies] serde-wasm-bindgen = "0.4.5" wasm-bindgen = "=0.2.83" -rand_os = { version = "0.1", features = ["wasm-bindgen"] } +rand_os = { version = "0.2", features = ["wasm-bindgen"] } js-sys = "0.3.51" getrandom = { version = "0.2.3", features = ["js"] } @@ -57,7 +57,7 @@ opt-level = "s" [dev-dependencies] quickcheck = "0.9.2" quickcheck_macros = "0.9.1" -rand_os = "0.1" +rand_os = "0.2" rand_chacha = "0.1" [build-dependencies]