blob: 62a1b2781640ef411a9ea2cd928e69e79337243f (
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.2.1")]
#![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;
|