bulletml 0.2.1

BulletML library in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![cfg_attr(feature = "backtrace", feature(backtrace))]

#[macro_use]
extern crate derive_new;
#[cfg(test)]
#[macro_use]
extern crate matches;
#[macro_use]
extern crate thiserror;

pub use runner::{AppRunner, Runner, RunnerData, State};
pub use tree::BulletML;

pub mod errors;
pub mod parse;
mod runner;
mod tree;