fsmy 0.1.0

A finite state machine library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]

mod edge;
pub mod prelude;
mod stack;
mod state_machine;

pub use state_machine::*;

#[cfg(feature = "history")]
mod journaled;
#[cfg(feature = "history")]
pub use journaled::*;

#[cfg(feature = "dsl")]
pub use fsmy_dsl as dsl;