compiler-tools 0.2.0

A proc-macro for deriving powerful and fast tokenizers with compile-time regex
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod tokenizer;
pub use tokenizer::*;

pub mod span;
pub use span::*;

pub mod misc;
pub use misc::*;

pub mod util;

#[cfg(feature = "use_regex")]
#[doc(hidden)]
pub use regex;