From e26736f1f785f2c05f54d857b2876688f3fa5702 Mon Sep 17 00:00:00 2001 From: taks <857tn859@gmail.com> Date: Thu, 7 Dec 2023 19:11:57 +0900 Subject: [PATCH] Fix CI --- src/race.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/race.rs b/src/race.rs index fe36fa1..da8a2fc 100644 --- a/src/race.rs +++ b/src/race.rs @@ -20,7 +20,7 @@ //! architectures versus `Relaxed`. #[cfg(feature = "critical-section")] -use atomic_polyfill as atomic; +use portable_atomic as atomic; #[cfg(not(feature = "critical-section"))] use core::sync::atomic;