From bd54bf7aff264a2ea8d935e5da686471320a8322 Mon Sep 17 00:00:00 2001 From: "@brodycj - C. Jonathan Brody" Date: Tue, 3 Sep 2024 15:12:25 -0400 Subject: [PATCH] fix default-features flag for parking_lot_core in dependencies --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a674409..5e60fdd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ exclude = ["*.png", "*.svg", "/Cargo.lock.msrv", "rustfmt.toml"] members = ["xtask"] [dependencies] -parking_lot_core = { version = "0.9.3", optional = true, default_features = false } +parking_lot_core = { version = "0.9.3", optional = true, default-features = false } portable-atomic = { version = "1", optional = true } critical-section = { version = "1", optional = true }