From 9f5050780f3e52ee5100c9d5c02bfeee25a5fd67 Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Wed, 15 Oct 2025 03:25:45 +0000 Subject: [PATCH] Update rand to 0.9.0 --- Cargo.toml | 4 ++-- fuzz/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c99c034..7f1c097 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,8 +11,8 @@ crate-type = ["cdylib", "rlib"] bincode = "1.3.3" getrandom = { version = "*", features = ["js"] } # Allow rand to get random numbers. js-sys = "0.3.58" -rand = "0.8.5" -rand_pcg = { version = "0.3.1", features = ["serde1"] } +rand = "0.9.0" +rand_pcg = { version = "0.9.0", features = ["serde1"] } rmp-serde = "1.1.0" serde = "1.0.143" serde_derive = "1.0.143" diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index db683db..e07962d 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -9,7 +9,7 @@ edition = "2018" cargo-fuzz = true [dependencies] -rand = "0.8.5" +rand = "0.9.0" [dependencies.tiles] path = ".." -- GitLab