cargo fmt
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good

This commit is contained in:
Robin Müller 2023-01-21 11:37:57 +01:00
parent ef55bc4a6e
commit 1e90793072
No known key found for this signature in database
GPG Key ID: BE6480244DFE612C
2 changed files with 2 additions and 2 deletions

View File

@ -11,10 +11,10 @@ use alloc::boxed::Box;
use chrono::Datelike;
#[cfg(feature = "alloc")]
use core::any::Any;
use core::cmp::Ordering;
use core::fmt::Debug;
use core::ops::{Add, AddAssign};
use core::time::Duration;
use core::cmp::Ordering;
use delegate::delegate;
/// Base value for the preamble field for a time field parser to determine the time field type.

View File

@ -1,8 +1,8 @@
//! CCSDS Time Code Formats according to [CCSDS 301.0-B-4](https://public.ccsds.org/Pubs/301x0b4e1.pdf)
use crate::{ByteConversionError, SizeMissmatch};
use chrono::{DateTime, LocalResult, TimeZone, Utc};
use core::fmt::{Display, Formatter};
use core::cmp::Ordering;
use core::fmt::{Display, Formatter};
#[allow(unused_imports)]
#[cfg(not(feature = "std"))]