summaryrefslogtreecommitdiff
path: root/dhall/src/lib.rs
blob: a8643bb0e871e5f0d7bb124ed329d921fedac9e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(box_patterns)]
#![feature(trace_macros)]
#![feature(proc_macro_hygiene)]
#![allow(
    clippy::type_complexity,
    clippy::infallible_destructuring_match,
    clippy::many_single_char_names
)]

mod normalize;
pub use crate::normalize::*;
pub mod imports;
pub mod typecheck;

pub use crate::imports::{load_dhall_file, DhallError};