moved re-export
Some checks failed
Rust/spacepackets/pipeline/head There was a failure building this commit

This commit is contained in:
Robin Müller 2023-07-09 16:48:53 +02:00
parent 581b51c61c
commit 4969d6c33c
Signed by: muellerr
GPG Key ID: A649FB78196E3849
2 changed files with 2 additions and 3 deletions

View File

@ -17,9 +17,6 @@ use core::ops::{Add, AddAssign};
use core::time::Duration;
use delegate::delegate;
#[cfg(feature = "std")]
use std_mod::*;
/// Base value for the preamble field for a time field parser to determine the time field type.
pub const P_FIELD_BASE: u8 = (CcsdsTimeCodes::Cds as u8) << 4;
pub const MIN_CDS_FIELD_LEN: usize = 7;

View File

@ -16,6 +16,8 @@ use serde::{Deserialize, Serialize};
use std::error::Error;
#[cfg(feature = "std")]
use std::time::{SystemTime, SystemTimeError};
#[cfg(feature = "std")]
use std_mod::*;
pub mod ascii;
pub mod cds;