Go to file
Kasper Juul Hermansen 2585e7ce34 Merge pull request 'Configure Renovate' (#1) from renovate/configure into master
Reviewed-on: #1
2024-04-06 20:07:01 +00:00
src feat: with iocat 2023-08-02 12:45:56 +02:00
tests feat: with iocat 2023-08-02 12:45:56 +02:00
.gitignore init 2021-02-04 11:09:05 +11:00
Cargo.toml feat: with publisable 2023-08-02 12:48:38 +02:00
LICENSE-APACHE relicense under dual MIT/Apache scheme 2021-03-22 11:57:11 +11:00
LICENSE-MIT update license year to 2023 2023-01-01 06:27:05 +11:00
README.md docs: update readme 2023-08-02 12:47:36 +02:00
renovate.json Add renovate.json 2023-08-02 10:59:51 +00:00

README.md

rlua-searcher

require Lua modules by name

(This is a fork of https://git.sr.ht/~ioiojo/rlua-searcher, I don't maintain this code, I just need to available on crates.io for other dependent packages.)

Description

Encode a Lua module as a HashMap of Lua strings indexed by module name. In an rlua::Context, pass the HashMap to add_searcher(), and require the module.

Synopsis

use rlua::Lua;
use rlua_searcher::{AddSearcher, Result};
use std::collections::HashMap;

fn main() {
    let lume = Cow::from(read_lume_to_string());
    let name = Cow::from("lume");
    let mut map = HashMap::new();
    map.insert(name, lume);

    let lua = Lua::new();

    let hello = lua
        .context::<_, Result<String>>(|lua_ctx| {
            lua_ctx.add_searcher(map)?;
            Ok(lua_ctx.load(r#"return require("lume")"#).eval()?)
        })
        .unwrap();

    // prints "hello lume"
    println!("{}", hello);
}

fn read_lume_to_string() -> String {
    r#"return "hello lume""#.to_string()
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.