scxml 0.2.0

W3C SCXML statechart library — parse, validate, export, and simulate Harel statecharts. Framework-agnostic, WASM-ready, rkyv zero-copy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Parsers for statechart definition formats (SCXML XML, JSON)
//! and input sanitization for untrusted sources.

/// JSON parser (serde-based).
#[cfg(feature = "json")]
pub mod json;
/// Input sanitization and limits for untrusted SCXML.
#[cfg(feature = "xml")]
pub mod sanitize;
/// W3C SCXML XML parser (quick-xml-based).
#[cfg(feature = "xml")]
pub mod xml;