From e500e8ef85bc7f152732d401fc1b3db0d76288e7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 May 2022 08:19:36 +0000 Subject: [PATCH] Update hashbrown requirement from 0.11.0 to 0.12.1 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.1) --- 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..589a8939 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.1", 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 }