/*******************************************************************************
*
* Copyright (c) 2026 Haixing Hu.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0.
*
******************************************************************************/
//! Standard, fully generic state machine implementation.
//!
//! This module keeps the public generic API based on user-provided state and
//! event enums. It is optimized for correctness and ergonomic API while
//! preserving the current crate behavior.
pub use StateMachine;
pub use StateMachineBuildError;
pub use StateMachineBuilder;
pub use ;
pub use Transition;