blob: 0a430e4c532145360f04a41ff8335d15cd95fa92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#![feature(trace_macros)]
#![feature(slice_patterns)]
#![feature(non_exhaustive)]
#![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
)]
#[macro_use]
mod tests;
pub mod core;
pub mod error;
pub mod phase;
|