mpc/
lib.rs

1//! This crate provides simple bindings for orangeduck's mpc library.
2//! This is still a work in progress and contains a modified version of
3//! mpc and some temporary glue code
4#![feature(inclusive_range_syntax)]
5#![deny(warnings, missing_docs)]
6
7pub mod glue;
8pub mod colors;
9
10#[macro_use]
11pub mod macros;
12
13pub mod mpc_c;
14pub mod ast;
15pub mod mpc_c_types;
16
17mod test;