bmatcher_core/
lib.rs

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
#![cfg_attr(not(test), no_std)]
extern crate alloc;

pub mod compiler;

mod atom;
pub use atom::{
    Atom,
    JumpType,
    ReadWidth,
};

mod target;
pub use target::MatchTarget;

mod matcher;
pub use matcher::BinaryMatcher;

mod stack;
pub use stack::{
    HeapStack,
    Stack,
    StaticStack,
};

mod pattern;
pub use pattern::{
    BinaryPattern,
    BorrowedBinaryPattern,
    OwnedBinaryPattern,
};