13 releases

0.2.2 Oct 29, 2024
0.2.0 Aug 31, 2024
0.1.8 May 11, 2024
0.1.7 Mar 2, 2024
0.1.2 Nov 19, 2023

#427 in Network programming

Download history 300/week @ 2024-08-09 200/week @ 2024-08-16 99/week @ 2024-08-23 493/week @ 2024-08-30 75/week @ 2024-09-06 76/week @ 2024-09-13 31/week @ 2024-09-20 29/week @ 2024-09-27 344/week @ 2024-10-04 72/week @ 2024-10-11 189/week @ 2024-10-18 189/week @ 2024-10-25 23/week @ 2024-11-01 13/week @ 2024-11-08 5/week @ 2024-11-15

52 downloads per month

MIT license

125KB
3K SLoC

Rust 2K SLoC // 0.0% comments Lua 1K SLoC // 0.2% comments

mlua-socket

A Rust-native implementation of LuaSocket for mlua.

License Arch Lua

Installing

Add to your Rust project using one of MLua's features: [lua51, lua52, lua53, lua54, luajit, luajit52].

$ cargo add mlua-socket --features luajit

Testing

$ make check

Benchmarking

$ make bench

Using

use mlua::Lua;

let lua = Lua::new();
mlua_socket::preload(&lua);
let script = r#"
    local socket = require('socket')
    local client = socket.connect('127.0.0.1', 3000)
    return client:send('abcd')
"#;
let _last_index: u16 = lua.load(script).eval()?;

Dependencies

~6–37MB
~598K SLoC