1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-04 23:26:15 +02:00

configure no_std for guts, but not for testing

This commit is contained in:
Jack O'Connor 2024-01-21 17:54:09 -08:00
parent fc75227170
commit 6e519ea6b7

View File

@ -1,3 +1,6 @@
// Tests always require libstd.
#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
use core::cmp;
use core::marker::PhantomData;
use core::mem;