spindle-lib 0.3.0

Simple and efficient expression and byte sequence generator for fuzz testing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(rustdoc::bare_urls)]
#![doc = include_str!("../README.md")]

mod error;
mod grammar;
mod ir;
mod regex;
mod reserved;
mod visitor;

pub use error::Error;
pub use grammar::Grammar;
pub use ir::MAX_REPEAT;
pub use visitor::Visitor;