mirror of
https://github.com/bytedream/litbwraw.git
synced 2025-06-27 02:10:33 +02:00
update rust crates to 2024 edition
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "example-binary"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
mlua = { version = ">=0.9.3", features = ["lua51", "vendored"] }
|
||||
|
@ -1,5 +1,7 @@
|
||||
fn main() {
|
||||
let lua = mlua::Lua::new();
|
||||
|
||||
lua.load(r#"print("Hello from WebAssembly Lua!")"#).exec().unwrap();
|
||||
lua.load(r#"print("Hello from WebAssembly Lua!")"#)
|
||||
.exec()
|
||||
.unwrap();
|
||||
}
|
||||
|
Reference in New Issue
Block a user