1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#![allow(unused_doc_comments)]

pub mod agent;
pub mod algebra;
pub mod claims;
pub mod cli;
pub mod codec;
pub mod error;
pub mod execution;
pub mod experiment;
pub mod fuzzer;
pub mod graphviz;
pub mod log;
pub mod protocol;
pub mod put;
pub mod put_registry;
pub mod stream;
pub mod test_utils;
pub mod trace;
pub mod trace_helper;
pub mod variable_data;

pub use {libafl, libafl_bolts};

pub const GIT_REF: &str = match option_env!("GIT_REF") {
    Some(env) => env,
    None => "undefined",
};

pub const MAYBE_GIT_REF: Option<&str> = option_env!("GIT_REF");

pub const GIT_MSG: &str = match option_env!("GIT_MSG") {
    Some(env) => env,
    None => "undefined",
};

pub const VERSION_STR: &str = env!("VERSION_STR");