rsre-lua 0.1.1

lua bindings for the rust regex crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: MIT

mod re;

#[cfg_attr(feature = "module", mlua::lua_module(name = "rsre"))]
pub fn rsre_lua(lua: &mlua::Lua) -> mlua::Result<mlua::Table> {
    let table = lua.create_table()?;

    table.set("Regex", lua.create_proxy::<re::LuaRegex>()?)?;

    Ok(table)
}