8 releases (breaking)

0.9.0 Nov 9, 2019
0.7.0 Oct 4, 2018
0.6.1 Sep 18, 2018
0.5.0 Sep 11, 2018
0.1.0 Sep 1, 2018

#33 in #fsm

Download history 16704/week @ 2024-07-19 12652/week @ 2024-07-26 14301/week @ 2024-08-02 15544/week @ 2024-08-09 13901/week @ 2024-08-16 15724/week @ 2024-08-23 10484/week @ 2024-08-30 11914/week @ 2024-09-06 13216/week @ 2024-09-13 8070/week @ 2024-09-20 5645/week @ 2024-09-27 4218/week @ 2024-10-04 3781/week @ 2024-10-11 4613/week @ 2024-10-18 2951/week @ 2024-10-25 3256/week @ 2024-11-01

15,481 downloads per month
Used in 3 crates (2 directly)

MIT/Apache

24KB
85 lines

SM aims to be a safe, fast and simple state machine library.

  • safe — Rust's type system, ownership model and exhaustive pattern matching prevent you from mis-using your state machines

  • fast — zero runtime overhead, the machine is 100% static, all validation happens at compile-time

  • simple — five traits, and one optional declarative macro, control-flow only, no business logic attached


You might be looking for:

Quick Example

extern crate sm;
use sm::sm;

sm! {
    Lock {
        InitialStates { Locked }

        TurnKey {
            Locked => Unlocked
            Unlocked => Locked
        }

        Break {
            Locked, Unlocked => Broken
        }
    }
}

fn main() {
    use Lock::*;
    let lock = Machine::new(Locked);
    let lock = lock.transition(TurnKey);

    assert_eq!(lock.state(), Unlocked);
    assert_eq!(lock.trigger().unwrap(), TurnKey);
}

Dependencies

~0–295KB