qubit-state-machine 0.1.0

A small, thread-safe finite state machine for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*******************************************************************************
 *
 *    Copyright (c) 2026.
 *    Haixing Hu, Qubit Co. Ltd.
 *
 *    All rights reserved.
 *
 ******************************************************************************/
//! Integration tests for `qubit-state-machine`.

#[path = "state_machine_builder/state_machine_builder_tests.rs"]
mod state_machine_builder_tests;

#[path = "state_machine/state_machine_tests.rs"]
mod state_machine_tests;

#[path = "transition/transition_tests.rs"]
mod transition_tests;