1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! This library is used by Wispha program.
//! You can also use this library to create your own project layout program.
//!
//! The functional APIs this library provides include:
//! * Core structs definitions of Wispha terms
//! * Serialization and deserialization
//! * Wispha tree manipulator

pub mod core;
pub mod serde;
mod manipulator;
mod strings;