From eac274d19917840984781a265afe6a4b7fac617e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:32:06 +0000 Subject: [PATCH] Update hashbrown requirement from 0.14 to 0.15 Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.14.0...v0.15.0) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b41b946..2c5bbbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ serde = ["glam/serde", "bvh2d/serde", "dep:serde"] [dependencies] tracing = { version = "0.1", optional = true } -hashbrown = { version = "0.14" } +hashbrown = { version = "0.15" } glam = { version = "0.27", features = ["approx"] } smallvec = { version = "1.13", features = ["union", "const_generics"] } bvh2d = { version = "0.5", git = "https://github.com/mockersf/bvh2d" }