1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! # Rusticata-macros
//!
//! Helper macros for the [rusticata](https://github.com/rusticata) project.


#[macro_use]
extern crate nom;

pub use macros::*;
#[macro_use]
pub mod macros;

pub use gen::*;
#[macro_use]
pub mod gen;