llua 0.1.3

Low level bindings to Lua5.4
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "regex")]
pub mod regex;
#[cfg(feature = "std")]
pub mod std;

pub fn init_global(s: &crate::State) {
    #[cfg(feature = "std")]
    self::std::init_global(s);
    #[cfg(feature = "regex")]
    s.requiref(crate::cstr!("regex"), regex::open, false);
}