mpc 0.1.10

WIP bindings for orangeduck's mpc (Micro Parser Combinators) library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! This crate provides simple bindings for orangeduck's mpc library.
//! This is still a work in progress and contains a modified version of
//! mpc and some temporary glue code
#![feature(inclusive_range_syntax)]
#![deny(warnings, missing_docs)]

pub mod glue;
pub mod colors;

#[macro_use]
pub mod macros;

pub mod mpc_c;
pub mod ast;
pub mod mpc_c_types;

mod test;