Skip to main content

cu29_runtime/
lib.rs

1#![doc = include_str!("../README.md")]
2#![cfg_attr(not(feature = "std"), no_std)]
3
4extern crate alloc;
5
6#[doc(hidden)]
7pub use paste::paste as __cu29_paste;
8
9pub mod app;
10#[cfg(feature = "std")]
11mod app_sim;
12pub mod config;
13pub mod copperlist;
14#[cfg(feature = "std")]
15pub mod cuasynctask; // no no-std version yet
16pub mod cubridge;
17pub mod curuntime;
18pub mod cutask;
19#[cfg(feature = "std")]
20pub mod debug;
21pub(crate) mod log;
22pub mod monitoring;
23pub mod payload;
24#[cfg(feature = "std")]
25pub mod pool;
26pub mod reflect;
27#[cfg(feature = "remote-debug")]
28pub mod remote_debug;
29pub mod resource;
30#[cfg(feature = "std")]
31pub mod simulation;