1
2
3
4
5
6
7
8
9
#![feature(type_ascription)]
#![feature(associated_type_defaults)]

pub mod interface;
pub mod implement;
#[cfg(test)]
pub mod test;

#[macro_use] extern crate log;