From 08aca8c4da4005e5f8004967454a0d69ecf72be4 Mon Sep 17 00:00:00 2001 From: zefad Date: Thu, 17 Sep 2026 19:43:18 +0200 Subject: [PATCH] Rand added --- Cargo.lock | 14 ++++++++++++++ Cargo.toml | 1 + 2 files changed, 15 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 233ec1f..3abb1e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1986,6 +1986,17 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527" +[[package]] +name = "chacha20" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06" +dependencies = [ + "cfg-if", + "cpufeatures", + "rand_core", +] + [[package]] name = "clipboard-win" version = "5.4.1" @@ -2349,6 +2360,7 @@ name = "down_into_the_void" version = "0.1.0" dependencies = [ "bevy", + "rand", ] [[package]] @@ -2678,6 +2690,7 @@ dependencies = [ "cfg-if", "libc", "r-efi 6.0.0", + "rand_core", ] [[package]] @@ -4321,6 +4334,7 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" dependencies = [ + "chacha20", "getrandom 0.4.3", "rand_core", ] diff --git a/Cargo.toml b/Cargo.toml index 9d0c1b9..deada36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,3 +5,4 @@ edition = "2024" [dependencies] bevy = "0.19.1" +rand = "0.10.2"