adar 0.2.0

Collection of architectural tools including flags, state machine, enum and tuple operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]
#![cfg_attr(not(feature = "std"), no_std)]

pub mod state_machine;
pub mod tuples;
pub use adar_macros as macros;
pub mod enums;

pub mod prelude {
    pub use crate::enums::*;
    pub use crate::macros::*;
    pub use crate::state_machine::*;
    pub use crate::tuples::*;
}