From 8080b870bd6f47e9de61713ac02bd8c14c24cf8e Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 16 Nov 2023 12:34:02 -0600 Subject: [PATCH] chore: Communicate motivation for AtomucU64 Co-authored-by: Weihang Lo --- clippy.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy.toml b/clippy.toml index 6ba9dc13b..dff120e95 100644 --- a/clippy.toml +++ b/clippy.toml @@ -7,5 +7,5 @@ disallowed-methods = [ { path = "std::env::vars_os", reason = "not recommended to use in Cargo. See rust-lang/cargo#11588" }, ] disallowed-types = [ - "std::sync::atomic::AtomicU64", + { path = "std::sync::atomic::AtomicU64", reason = "not portable. See rust-lang/cargo#12988" }, ]