//! BPMN 2.0 stack — the cross-language single source of truth.
//!
//! Mirrors the Python pipeline (`packages/python/src/kymo/`) module-for-module so
//! divergences are easy to audit:
//!
//! | this module | Python source |
//! |-----------------|-------------------|
//! | [`model`] | `model.py` |
//! | [`round`] | `round.ts` / `int(round())` |
//! | [`from_bpmn`] | `from_bpmn.py` |
//! | [`to_bpmn`] | `to_bpmn.py` |
//! | [`to_json`] | `to_kymojson.py` + `tests/_conformance.py` |
//!
//! Parity is locked by `tests/bpmn_conformance.rs`, which asserts against the
//! same committed `conformance/golden/*.json` the Python and JS suites use.
pub use ;
pub use parse as import;
pub use from_json;
pub use ;
pub use export;
pub use model_json;
pub use ;