try fixing CI #15

Merged
muellerr merged 2 commits from try-fix-ci into main 2023-07-10 10:27:31 +02:00
2 changed files with 1 additions and 3 deletions
Showing only changes of commit 79791a75bd - Show all commits

View File

@ -65,8 +65,7 @@ use crate::ecss::CCSDS_HEADER_LEN;
use core::fmt::{Debug, Display, Formatter}; use core::fmt::{Debug, Display, Formatter};
use crc::{Crc, CRC_16_IBM_3740}; use crc::{Crc, CRC_16_IBM_3740};
use delegate::delegate; use delegate::delegate;
#[cfg(not(feature = "std"))]
use num_traits::Unsigned;
#[cfg(feature = "std")] #[cfg(feature = "std")]
use std::error::Error; use std::error::Error;

View File

@ -3,7 +3,6 @@
//! //!
//! The core data structure to do this is the [TimeProviderCcsdsEpoch] struct. //! The core data structure to do this is the [TimeProviderCcsdsEpoch] struct.
use super::*; use super::*;
use crate::time::std_mod::StdTimestampError;
use chrono::Datelike; use chrono::Datelike;
use core::fmt::Debug; use core::fmt::Debug;
use core::ops::{Add, AddAssign}; use core::ops::{Add, AddAssign};