From 72d2860851657ae5c48c638aaca8a3bd4f508d29 Mon Sep 17 00:00:00 2001 From: Parker TenBroeck <51721964+ParkerTenBroeck@users.noreply.github.com> Date: Mon, 13 Jun 2022 17:49:19 -0400 Subject: [PATCH] fixed test feature not being enabled for nightly no_std --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 42e9121..25120a2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -86,7 +86,7 @@ //! MIT licensed -#![cfg_attr(all(nightly, not(feature = "no_std")), feature(test))] +#![cfg_attr(all(nightly, test), feature(test))] #![allow(dead_code)]