From 96328cd2b9d14c7258706fc435afaa1b3cbc0264 Mon Sep 17 00:00:00 2001 From: bunnie Date: Sat, 6 Jan 2024 18:25:16 +0800 Subject: [PATCH] bump getrandom version to allow compatiblity with sigchat crates --- Cargo.lock | 6 +++--- imports/getrandom/Cargo.toml | 2 +- imports/getrandom/src/lib.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dabc2e9fc..63ea45f95 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2105,7 +2105,7 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.6" +version = "0.2.11" dependencies = [ "cfg-if", "compiler_builtins", @@ -3793,7 +3793,7 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" dependencies = [ - "getrandom 0.2.6", + "getrandom 0.2.11", ] [[package]] @@ -3912,7 +3912,7 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" dependencies = [ - "getrandom 0.2.6", + "getrandom 0.2.11", "redox_syscall 0.2.13", "thiserror", ] diff --git a/imports/getrandom/Cargo.toml b/imports/getrandom/Cargo.toml index cfcde3b13..2654c200a 100644 --- a/imports/getrandom/Cargo.toml +++ b/imports/getrandom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "getrandom" -version = "0.2.6" # Also update html_root_url in lib.rs when bumping this +version = "0.2.11" # Also update html_root_url in lib.rs when bumping this edition = "2018" authors = ["The Rand Project Developers"] license = "MIT OR Apache-2.0" diff --git a/imports/getrandom/src/lib.rs b/imports/getrandom/src/lib.rs index 55939af3a..59364cf78 100644 --- a/imports/getrandom/src/lib.rs +++ b/imports/getrandom/src/lib.rs @@ -150,7 +150,7 @@ #![doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png", html_favicon_url = "https://www.rust-lang.org/favicon.ico", - html_root_url = "https://docs.rs/getrandom/0.2.6" + html_root_url = "https://docs.rs/getrandom/0.2.11" )] #![no_std] #![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]