From 4f4425ea4cb4307fc936d1d3a1ef4cbe10d78461 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jan 2022 08:19:53 +0000 Subject: [PATCH] Update hashbrown requirement from 0.11.0 to 0.12.0 Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. - [Release notes](https://github.com/rust-lang/hashbrown/releases) - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.11.0...v0.12.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 0939329d..e8c16449 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ row-serialize = ["serde"] [dependencies] hecs-macros = { path = "macros", version = "0.7.0", optional = true } -hashbrown = { version = "0.11.0", default-features = false, features = ["ahash", "inline-more"] } +hashbrown = { version = "0.12.0", default-features = false, features = ["ahash", "inline-more"] } lazy_static = { version = "1.4.0", optional = true, features = ["spin_no_std"] } serde = { version = "1.0.117", default-features = false, optional = true }