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