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

#![deny(missing_docs,unsafe_code,
        unstable_features,
        unused_import_braces, unused_qualifications)]

#[macro_use]
extern crate nom;

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

pub mod debug;