From fdcf1146ec1bdf732603b7e28214faf52c17a0a9 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 23 Feb 2024 14:38:22 +0100 Subject: [PATCH] fix CI --- satrs/src/lib.rs | 2 ++ satrs/src/mode_tree.rs | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/satrs/src/lib.rs b/satrs/src/lib.rs index 996b9e5..b3374f9 100644 --- a/satrs/src/lib.rs +++ b/satrs/src/lib.rs @@ -32,6 +32,8 @@ pub mod events; #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] pub mod executable; pub mod hal; +#[cfg(feature = "std")] +#[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] pub mod mode_tree; pub mod objects; pub mod pool; diff --git a/satrs/src/mode_tree.rs b/satrs/src/mode_tree.rs index 8bfb137..dca114a 100644 --- a/satrs/src/mode_tree.rs +++ b/satrs/src/mode_tree.rs @@ -1,5 +1,4 @@ use std::sync::mpsc; - use alloc::vec::Vec; use hashbrown::HashMap;