rust-sfsm 0.1.2

A full static Rust finite state machine macro library
Documentation
# Rust Static FSM

A full static Rust finite state machine macro library.

Compatible with `no_std` and embedded environments.

---

- Build

```bash
cargo build
```

- Generate doc

```bash
cargo doc --open
```

## Add Dependency

Add crate to your project

```bash
cargo add rust_sfsm
```

## Example

An example is available in `examples/mario.rs` with a well known state machine.

```bash
cargo run --example mario
```