summaryrefslogtreecommitdiff
path: root/dhall/src/lib.rs
blob: 54111dd8a74b49cc9d19bc9cf60bc78d3d901369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc(html_root_url = "https://docs.rs/dhall/0.1.0")]
#![feature(trace_macros)]
#![feature(slice_patterns)]
#![feature(never_type)]
#![allow(
    clippy::type_complexity,
    clippy::infallible_destructuring_match,
    clippy::many_single_char_names,
    clippy::match_wild_err_arm,
    clippy::redundant_closure,
    clippy::ptr_arg
)]

mod tests;

pub mod error;
pub mod semantics;
pub mod syntax;