From 0e622c77129f5aeeb846d1a38d4d3dda1c41246b Mon Sep 17 00:00:00 2001 From: Jacob Date: Mon, 23 Sep 2024 22:21:30 +0200 Subject: [PATCH] relax hashbrown dependency requirement --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 875e794..fa3d791 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ include = ["src/*.rs", "Cargo.toml", "LICENSE"] log = "0.4" egui = "0.28" regex = "1.10" -hashbrown = "0.14.5" +hashbrown = "0.14" [dev-dependencies] eframe = "0.28"