actiondb 0.3.0

A safe and efficient unstructured text (log) parsing library.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_use]
extern crate log;
extern crate uuid;
extern crate serde;
extern crate serde_json;
#[macro_use]
extern crate maplit;

pub mod parsers;
pub mod utils;
pub mod matcher;
pub mod grammar;

pub use matcher::Matcher;