From 853ead6834fbc57c2d57645178b37f46f3852c84 Mon Sep 17 00:00:00 2001 From: David Barsky Date: Mon, 6 Nov 2023 17:44:37 -0500 Subject: [PATCH] chore: fix `ahash`-caused build breakage --- tracing-log/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracing-log/Cargo.toml b/tracing-log/Cargo.toml index 0b7bfa5214..757a687f88 100644 --- a/tracing-log/Cargo.toml +++ b/tracing-log/Cargo.toml @@ -28,7 +28,7 @@ tracing-core = { path = "../tracing-core", version = "0.1.28"} log = { version = "0.4.17" } once_cell = "1.13.0" lru = { version = "0.7.7", optional = true } -ahash = { version = "0.7.6", optional = true } +ahash = { version = "0.7.7", optional = true } [dev-dependencies] tracing = { path = "../tracing", version = "0.1.35"}