1#![warn(missing_docs)]
23//! A crate for representing and creating Rust type definitions as values,
4//! i. e. a subset of the Rust abstract syntax.
56mod ast;
7mod camo;
8#[cfg(test)]
9mod tests;
1011pub use crate::ast::*;
12pub use crate::camo::*;