From 198916179e882fce114218f2811c24ba9a9c77f7 Mon Sep 17 00:00:00 2001 From: Jinxit Date: Wed, 3 Aug 2022 12:20:29 +0200 Subject: [PATCH] Rename feature to enable-atomic-polyfill Having a feature named the same as a dependency when you also need to enable dependency features leads to wonky results --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c6d5b6ce..83045823 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ maintenance = { status = "actively-developed" } default = ["std", "atomic"] std = [] atomic = ["spin"] -atomic-polyfill = ["once_cell/atomic-polyfill", "dep:atomic-polyfill"] +enable-atomic-polyfill = ["atomic-polyfill", "once_cell/atomic-polyfill"] # Enables derive(Bundle) macros = ["hecs-macros", "once_cell"] # Enables the serialize::column module