feagi_data_structures 0.0.50-beta.60

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
13
14
15
16
//! The core crate for FEAGI. Defines the most common data structures used throughout
#![doc = include_str!("../docs/readme.md")]

mod templates;
mod error;
mod feagi_signal;
mod feagi_json;
pub mod shared_enums;
pub mod genomic;
pub mod neuron_voxels;
pub mod common_macros;

pub use error::FeagiDataError as FeagiDataError;
pub use feagi_signal::{FeagiSignal, FeagiSignalIndex};
pub use feagi_json::FeagiJSON;