camo_core/
lib.rs

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