From 2be24aec09e3c866f67dba971c2bd52da03072e7 Mon Sep 17 00:00:00 2001 From: Christian Legnitto Date: Sun, 17 Aug 2025 09:31:24 -0700 Subject: [PATCH] Make glam version bound more idiomatic --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f9ec217db71..001eb1a671f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,7 +59,7 @@ tracing = "0.1" tracing-subscriber = { version = "0.3.3", features = ["env-filter", "json"] } num-traits = { version = "0.2.15", default-features = false } glam = { version = ">=0.22, <=0.30", default-features = false } -libm = { version = ">=0.2.5", default-features = false } +libm = { version = "0.2.5", default-features = false } bytemuck = { version = "1.23", features = ["derive"] } # Enable incremental by default in release mode.