From 2fa6ed72a2ea5c0b01457aa595ddaad6e7d8be0f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 May 2022 14:09:01 +0000 Subject: [PATCH] Bump hashbrown from 0.11.2 to 0.12.1 in /src Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.11.2 to 0.12.1. - [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.2...v0.12.1) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/Cargo.lock | 10 +++++----- src/graphics/Cargo.toml | 2 +- src/graphics_base/Cargo.toml | 2 +- src/graphics_server/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Cargo.lock b/src/Cargo.lock index d6b6871..0daae25 100644 --- a/src/Cargo.lock +++ b/src/Cargo.lock @@ -294,7 +294,7 @@ dependencies = [ "freetype", "graphics_base", "graphics_server", - "hashbrown 0.11.2", + "hashbrown 0.12.1", "hecs", "minifb", "os", @@ -307,7 +307,7 @@ version = "0.1.0" dependencies = [ "cairo", "corepack", - "hashbrown 0.11.2", + "hashbrown 0.12.1", "hecs", "os", "serde", @@ -339,7 +339,7 @@ dependencies = [ "cairo", "corepack", "graphics_base", - "hashbrown 0.11.2", + "hashbrown 0.12.1", "hecs", "jpeg-decoder", "os", @@ -362,9 +362,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.11.2" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" +checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3" dependencies = [ "ahash 0.7.4", ] diff --git a/src/graphics/Cargo.toml b/src/graphics/Cargo.toml index d541b87..d17b065 100644 --- a/src/graphics/Cargo.toml +++ b/src/graphics/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" cairo = { path = "../cairo" } freetype = { path = "../freetype" } graphics_base = { path = "../graphics_base" } -hashbrown = { version = "0.11", default-features = false } +hashbrown = { version = "0.12", default-features = false } hecs = { version = "0.2", default-features = false, features = ["single_threaded"], git = "https://github.com/1tgr/hecs.git", rev = "c87707007be7d13d4a727c1531cce535ee8a80cf" } [target.'cfg(target_os="rust_os")'.dependencies] diff --git a/src/graphics_base/Cargo.toml b/src/graphics_base/Cargo.toml index eae2f95..542475a 100644 --- a/src/graphics_base/Cargo.toml +++ b/src/graphics_base/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] cairo = { path = "../cairo" } -hashbrown = { version = "0.11", default-features = false, features = ["ahash"] } +hashbrown = { version = "0.12", default-features = false, features = ["ahash"] } hecs = { version = "0.2", default-features = false, features = ["single_threaded"], git = "https://github.com/1tgr/hecs.git", rev = "c87707007be7d13d4a727c1531cce535ee8a80cf" } serde = { version = "1", default-features = false, features = ["alloc"] } serde_derive = "1" diff --git a/src/graphics_server/Cargo.toml b/src/graphics_server/Cargo.toml index a3c9b1a..7a1c21a 100644 --- a/src/graphics_server/Cargo.toml +++ b/src/graphics_server/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] cairo = { path = "../cairo" } graphics_base = { path = "../graphics_base" } -hashbrown = { version = "0.11", default-features = false } +hashbrown = { version = "0.12", default-features = false } hecs = { version = "0.2", default-features = false, features = ["single_threaded"], git = "https://github.com/1tgr/hecs.git", rev = "c87707007be7d13d4a727c1531cce535ee8a80cf" } jpeg-decoder = { version = "0.1", default-features = false, git = "https://github.com/1tgr/jpeg-decoder.git", rev = "f63a32c5154485e1d22e01384a9f78c6b1c4225b" } serde = { version = "1", default-features = false, features = ["alloc"] }