1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Cookie factory
//! # cookie-factory
//!
//! serialization library built on the same design as nom.
//!
//! Highly experimental, don't use it if you're afraid of rewriting all your code
#![cfg_attr(feature = "nightly", feature(trace_macros))]

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

mod combinators;
pub use combinators::*;