From 7ed0f7322ce2f6ccc95fa7ef2eedcff56bcb5c3f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jun 2023 18:47:09 +0000 Subject: [PATCH] chore(deps): Bump hashlink from 0.8.2 to 0.8.3 Bumps [hashlink](https://github.com/kyren/hashlink) from 0.8.2 to 0.8.3. - [Changelog](https://github.com/triplehex/hashlink/blob/master/CHANGELOG.md) - [Commits](https://github.com/kyren/hashlink/commits) --- updated-dependencies: - dependency-name: hashlink dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 13 ++++++++++--- vdev/Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ce9e6d92c79c3..818825c21588b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -82,6 +82,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "allocator-api2" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4f263788a35611fba42eb41ff811c5d0360c58b97402570312a350736e2542e" + [[package]] name = "amq-protocol" version = "7.0.1" @@ -3612,15 +3618,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" dependencies = [ "ahash 0.8.2", + "allocator-api2", ] [[package]] name = "hashlink" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0761a1b9491c4f2e3d66aa0f62d0fba0af9a0e2852e4d48ea506632a4b56e6aa" +checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f" dependencies = [ - "hashbrown 0.13.2", + "hashbrown 0.14.0", "serde", ] diff --git a/vdev/Cargo.toml b/vdev/Cargo.toml index 23ab8ab123fda..2e193bc4c4320 100644 --- a/vdev/Cargo.toml +++ b/vdev/Cargo.toml @@ -20,7 +20,7 @@ directories = "5.0.1" # remove this when stabilized https://doc.rust-lang.org/stable/std/path/fn.absolute.html dunce = "1.0.4" glob = { version = "0.3.1", default-features = false } -hashlink = { version = "0.8.2", features = ["serde_impl"] } +hashlink = { version = "0.8.3", features = ["serde_impl"] } hex = "0.4.3" indicatif = { version = "0.17.5", features = ["improved_unicode"] } itertools = "0.10.5"