feagi-structures 0.0.11

The most core library, defines the basic data types used by FEAGI, as well as some processors to modify them
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod embedded_esp_32;
#[cfg(feature = "async-tokio")]
mod standard_tokio;
mod wasi;
#[cfg(feature = "async-wasm")]
mod wasm;

#[cfg(feature = "async-tokio")]
pub use standard_tokio::{TokioHandle, TokioRuntime};

#[cfg(feature = "async-wasm")]
pub use wasm::WasmRuntime;