From 625435f93baf9c356840431a17de2682f81bcb5f Mon Sep 17 00:00:00 2001 From: eZio Pan Date: Mon, 25 Mar 2024 20:49:21 +0800 Subject: [PATCH] Update README.md link to portable-atomic --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 268f511..7486c6d 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ assert_eq!(*x, 42); ## Interoperability -This crate uses [`atomic-polyfill`](https://github.com/embassy-rs/atomic-polyfill), so on targets without native +This crate uses [`portable-atomic`](https://crates.io/crates/portable-atomic), so on targets without native atomics you must import a crate that provides a [`critical-section`](https://github.com/rust-embedded/critical-section) implementation. See the `critical-section` README for details.