From cf0f603119f9b6012852e5929a98ead7b5a7b882 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Jan 2023 14:03:07 +0000 Subject: [PATCH] Bump hashbrown from 0.11.2 to 0.13.2 in /src Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.11.2 to 0.13.2. - [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.13.2) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/Cargo.lock | 26 +++++++++++++------------- src/graphics/Cargo.toml | 2 +- src/graphics_base/Cargo.toml | 2 +- src/graphics_server/Cargo.toml | 2 +- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/Cargo.lock b/src/Cargo.lock index d6b6871..dfc1405 100644 --- a/src/Cargo.lock +++ b/src/Cargo.lock @@ -14,11 +14,11 @@ checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217" [[package]] name = "ahash" -version = "0.7.4" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43bb833f0bf979d8475d38fbf09ed3b8a55e1885fe93ad3f93239fc6a4f17b98" +checksum = "bf6ccdb167abbf410dcb915cabd428929d7f6a04980b54a11f26a39f1c7f7107" dependencies = [ - "getrandom", + "cfg-if 1.0.0", "once_cell", "version_check", ] @@ -294,7 +294,7 @@ dependencies = [ "freetype", "graphics_base", "graphics_server", - "hashbrown 0.11.2", + "hashbrown 0.13.2", "hecs", "minifb", "os", @@ -307,7 +307,7 @@ version = "0.1.0" dependencies = [ "cairo", "corepack", - "hashbrown 0.11.2", + "hashbrown 0.13.2", "hecs", "os", "serde", @@ -339,7 +339,7 @@ dependencies = [ "cairo", "corepack", "graphics_base", - "hashbrown 0.11.2", + "hashbrown 0.13.2", "hecs", "jpeg-decoder", "os", @@ -362,11 +362,11 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.11.2" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" +checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" dependencies = [ - "ahash 0.7.4", + "ahash 0.8.2", ] [[package]] @@ -552,9 +552,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.7.2" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3" +checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" [[package]] name = "orbclient" @@ -898,9 +898,9 @@ checksum = "d63556a25bae6ea31b52e640d7c41d1ab27faba4ccb600013837a3d0b3994ca1" [[package]] name = "version_check" -version = "0.9.3" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "wasi" diff --git a/src/graphics/Cargo.toml b/src/graphics/Cargo.toml index d541b87..56b7f19 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.13", 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..f72565f 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.13", 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..f1e6ac3 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.13", 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"] }