kelora 0.3.0

A command-line log analysis tool with embedded Rhai scripting
use rhai::Engine;

pub mod arrays;
pub mod columns;
pub mod conf;
pub mod datetime;
pub mod docs;
pub mod emit;
pub mod encoding;
pub mod environment;
pub mod maps;
pub mod math;
pub mod process;
pub mod random;
pub mod safety;
pub mod strings;
pub mod tracking;
pub mod window;

pub fn register_all_functions(engine: &mut Engine) {
    arrays::register_functions(engine);
    strings::register_functions(engine);
    tracking::register_functions(engine);
    columns::register_functions(engine);
    maps::register_functions(engine);
    math::register_functions(engine);
    process::register_functions(engine);
    random::register_functions(engine);
    datetime::register_functions(engine);
    window::register_functions(engine);
    safety::register_functions(engine);
    conf::register_functions(engine);
    encoding::register_functions(engine);
    environment::register_functions(engine);
    emit::register_functions(engine);
}