bpmn-engine 0.1.0

BPMN 2.0 execution engine for Rust with JSON and XML format support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! BPMN Elements
//!
//! Implementation of BPMN elements (Task, Gateway, Event) with Activity/Capability traits.

pub mod event;
pub mod gateway;
pub mod task;

pub use event::*;
pub use gateway::*;
pub use task::*;