From 71f95f75e8c3d35fc22cd5aec67bb4b4aa266973 Mon Sep 17 00:00:00 2001 From: Philippe Llerena Date: Fri, 26 Sep 2025 10:32:37 +0200 Subject: [PATCH] Update dep --- Cargo.toml | 5 +++-- crates/crust-core/Cargo.toml | 2 +- crates/crust-render/Cargo.toml | 4 ++-- crates/utils/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 91c74c4..9ed60e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ license-file = "LICENSE" [workspace.dependencies] serde = { version = "1.0", features = ["derive"] } -glam = { version = "0.30.1", features = ["serde"] } +glam = { version = "0.30.8", features = ["serde"] } tracing = {version = "0.1.41", default-features = false} -exr = "1.73.0" \ No newline at end of file +exr = "1.73.0" +rand = "0.9.2" \ No newline at end of file diff --git a/crates/crust-core/Cargo.toml b/crates/crust-core/Cargo.toml index e9be266..609f5cc 100644 --- a/crates/crust-core/Cargo.toml +++ b/crates/crust-core/Cargo.toml @@ -10,7 +10,6 @@ path = "src/lib.rs" [dependencies] utils = { path = "../utils" } -rand = "0.9.0" image = { version = "0.25.6", default-features = false, features = ["png"] } rayon = "1.10.0" serde.workspace = true @@ -22,6 +21,7 @@ ogawa-rs = { git = "https://github.com/doubleailes/ogawa-rs" } glam.workspace = true tracing.workspace = true exr.workspace = true +rand.workspace = true diff --git a/crates/crust-render/Cargo.toml b/crates/crust-render/Cargo.toml index 3e259fa..61f94b2 100644 --- a/crates/crust-render/Cargo.toml +++ b/crates/crust-render/Cargo.toml @@ -6,10 +6,10 @@ license-file.workspace = true [dependencies] crust-core = {path = "../crust-core"} -clap = { version = "4.5.34", features = ["derive"] } +clap = { version = "4.5.48", features = ["derive"] } tracing.workspace = true exr.workspace = true [dependencies.tracing-subscriber] -version = "0.3.19" +version = "0.3.20" features = ["fmt"] \ No newline at end of file diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index d645a51..1821e9b 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.workspace = true serde.workspace = true glam.workspace = true