From e5a87a4c8c097fe610653f83b9f00f783b570c1a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 14:58:12 +0000 Subject: [PATCH] Update hashbrown requirement from 0.16 to 0.17 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.16.0...v0.17.0) --- updated-dependencies: - dependency-name: hashbrown dependency-version: 0.17.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- metropolis-core/Cargo.toml | 2 +- tch/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/metropolis-core/Cargo.toml b/metropolis-core/Cargo.toml index bd9c3f4..9fc0dc1 100644 --- a/metropolis-core/Cargo.toml +++ b/metropolis-core/Cargo.toml @@ -33,7 +33,7 @@ askama = { version = "0.15", default-features = false, features = [ clap = { version = "4.0", features = ["derive"] } either = "1.8" enum-as-inner = "0.7" -hashbrown = { version = "0.16", features = ["rayon"] } +hashbrown = { version = "0.17", features = ["rayon"] } indicatif = "0.18" itertools = "0.14" log = "0.4" diff --git a/tch/Cargo.toml b/tch/Cargo.toml index 4448191..a27999e 100644 --- a/tch/Cargo.toml +++ b/tch/Cargo.toml @@ -24,7 +24,7 @@ clap = { version = "4.0", features = ["derive"] } csv = "1.1" either = { version = "1.6", features = ["serde"] } fixedbitset = "0.5" -hashbrown = { version = "0.16", features = ["rayon", "serde"] } +hashbrown = { version = "0.17", features = ["rayon", "serde"] } indicatif = "0.18" log = "0.4" num-traits = "0.2"