feat: define crate as no_std only when not doing tests

Signed-off-by: Lachezar Lechev <elpiel93@gmail.com>
This commit is contained in:
Lachezar Lechev 2023-07-12 18:19:27 +03:00
commit 1788e43333
No known key found for this signature in database
GPG key ID: B2D641D6A2C8E742

View file

@ -1,4 +1,4 @@
#![no_std] #![cfg_attr(not(test), no_std)]
#![allow(unused)] #![allow(unused)]
#![deny(rustdoc::broken_intra_doc_links)] #![deny(rustdoc::broken_intra_doc_links)]
#![doc = include_str!("../README.md")] #![doc = include_str!("../README.md")]