blob: e71809a072c44319211d842862c71ac19a058633 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#![deny(clippy::pedantic, unused_imports)]
#![allow(dead_code, unstable_name_collisions, clippy::missing_errors_doc)]
#![feature(impl_trait_in_assoc_type)]
use mon::{Parser, input::Input};
pub trait Parseable<'a, I: Input + 'a> {
type Parser: Parser<I, Output = Self>;
fn parser() -> Self::Parser;
}
pub mod atom;
pub mod ebuild;
pub mod useflag;
|