dhall 0.12.0

Implementation of the Dhall configuration language
Documentation
#![allow(
    clippy::many_single_char_names,
    clippy::should_implement_trait,
    clippy::new_without_default,
    clippy::type_complexity
)]

mod ast;
pub use crate::syntax::ast::visitor;
pub use crate::syntax::ast::*;
pub use crate::syntax::text::parser::*;
pub use crate::syntax::text::printer::*;
pub mod binary;
pub mod text;