From 519afbf0d30f45687c7dcaff0bde5e654fee6790 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 17:04:45 +0000 Subject: [PATCH] Update glam requirement from 0.27 to 0.29 Updates the requirements on [glam](https://github.com/bitshifter/glam-rs) to permit the latest version. - [Changelog](https://github.com/bitshifter/glam-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/bitshifter/glam-rs/compare/0.27.0...0.29.0) --- updated-dependencies: - dependency-name: glam dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- examples/traced/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index aabce26..06e062a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ serde = ["glam/serde", "bvh2d/serde", "dep:serde"] [dependencies] tracing = { version = "0.1", optional = true } hashbrown = { version = "0.14" } -glam = { version = "0.27", features = ["approx"] } +glam = { version = "0.29", features = ["approx"] } smallvec = { version = "1.13", features = ["union", "const_generics"] } bvh2d = { version = "0.5", git = "https://github.com/mockersf/bvh2d" } serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/examples/traced/Cargo.toml b/examples/traced/Cargo.toml index 6ffbbd9..0c60bae 100644 --- a/examples/traced/Cargo.toml +++ b/examples/traced/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] polyanya = { path = "../../", features = ["tracing"] } -glam = "0.27" +glam = "0.29" tracing-subscriber = "0.3" tracing-tracy = "0.10" tracing = "0.1"