docs.rs failed to build mlua-crc16-1.0.2
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-crc16-1.0.0
mlua-crc16
A Rust-native implementation of luacrc16 for mlua.
Installing
Add to your Rust project using one of MLua's features: [lua51, lua52, lua53, lua54, luajit, luajit52].
$ cargo add mlua-crc16 --features luajit
Using
use Lua;
let lua = new;
preload?;
let script = r#"
local crc16 = require('crc16')
return crc16.compute('abc 123')
"#
let crc16: u16 = lua.load.eval?;
assert_eq!;
Testing
$ make check