update rust crates to 2024 edition

This commit is contained in:
2025-03-01 23:43:31 +01:00
parent f033739bba
commit 28001a2040
10 changed files with 50 additions and 30 deletions

View File

@ -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();
}