1
2
3
4
5
6
7
8
9
//! A crate for representing and creating Rust type definitions as values,
//! i. e. a subset of the Rust abstract syntax.

mod ast;
mod camo;
mod export;

pub use crate::ast::*;
pub use crate::camo::*;