diff --git a/crates/crust-core/Cargo.toml b/crates/crust-core/Cargo.toml index 4a8711e..f1d1385 100644 --- a/crates/crust-core/Cargo.toml +++ b/crates/crust-core/Cargo.toml @@ -10,7 +10,7 @@ path = "src/lib.rs" [dependencies] utils = { path = "../utils" } -rand = "0.9.0" +rand = "0.10.1" image = { version = "0.25.6", default-features = false, features = ["png"] } rayon = "1.10.0" serde.workspace = true diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index d645a51..8a5483a 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -5,6 +5,6 @@ edition.workspace = true license-file.workspace = true [dependencies] -rand = "0.9.0" +rand = "0.10.1" serde.workspace = true glam.workspace = true