From 7ebcfc6ff2e2d49fda2286f2b8706d5eddd0baef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jan 2022 14:11:42 +0000 Subject: [PATCH] Bump hashbrown from 0.11.2 to 0.12.0 in /src Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.11.2 to 0.12.0. - [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.0) --- 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..3119820 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.0", "hecs", "minifb", "os", @@ -307,7 +307,7 @@ version = "0.1.0" dependencies = [ "cairo", "corepack", - "hashbrown 0.11.2", + "hashbrown 0.12.0", "hecs", "os", "serde", @@ -339,7 +339,7 @@ dependencies = [ "cairo", "corepack", "graphics_base", - "hashbrown 0.11.2", + "hashbrown 0.12.0", "hecs", "jpeg-decoder", "os", @@ -362,9 +362,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.11.2" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" +checksum = "8c21d40587b92fa6a6c6e3c1bdbf87d75511db5672f9c93175574b3a00df1758" 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"] }