docs.rs failed to build mlua-socket-0.2.0
                        
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
                        Visit the last successful build:
                        
                            mlua-socket-0.1.1
                        
                    
mlua-socket
A Rust-native implementation of LuaSocket for mlua.
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 Lua;
let lua = new;
preload;
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.eval?;