cu29_runtime/lib.rs
1#![doc = include_str!("../README.md")]
2#![cfg_attr(not(feature = "std"), no_std)]
3
4#[cfg(not(feature = "std"))]
5extern crate alloc;
6
7pub mod app;
8pub mod config;
9pub mod copperlist;
10#[cfg(feature = "std")]
11pub mod cuasynctask; // no no-std version yet
12pub mod curuntime;
13pub mod cutask;
14pub(crate) mod log;
15pub mod monitoring;
16pub mod payload;
17#[cfg(feature = "std")]
18pub mod pool;
19#[cfg(feature = "std")]
20pub mod simulation;