From 981ce3a8fbf44a9f7a5b046de501c645b4c2098a Mon Sep 17 00:00:00 2001 From: Robert Jördens Date: Fri, 17 Dec 2021 08:31:02 +0100 Subject: asm: allow stable asm --- asm/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'asm/lib.rs') diff --git a/asm/lib.rs b/asm/lib.rs index fc8ddc8..48f3dc2 100644 --- a/asm/lib.rs +++ b/asm/lib.rs @@ -34,6 +34,8 @@ #![no_std] #![crate_type = "staticlib"] #![deny(warnings)] +// Don't warn about feature(asm) being stable on Rust >= 1.59.0 +#![allow(stable_features)] mod inline; -- cgit v1.2.3