only allow tests for std envs
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good

This commit is contained in:
Robin Müller 2022-08-20 23:19:38 +02:00
parent 35073a45a5
commit 3970061ca1
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC

View File

@ -46,7 +46,7 @@
#![no_std]
#[cfg(feature = "alloc")]
extern crate alloc;
#[cfg(feature = "std")]
#[cfg(any(feature = "std", test))]
extern crate std;
use crate::ecss::CCSDS_HEADER_LEN;