Skip to content

Commit ec2ce36

Browse files
committed
Some final Lua 5.5 updates
1 parent 7175700 commit ec2ce36

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ with async/await features and support of writing native Lua modules in Rust.
1616
"""
1717

1818
[package.metadata.docs.rs]
19-
features = ["lua54", "vendored", "async", "send", "serde", "macros"]
19+
features = ["lua55", "vendored", "async", "send", "serde", "macros"]
2020
rustdoc-args = ["--cfg", "docsrs"]
2121

2222
[workspace]

docs/release_notes/v0.9.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ In previous mlua versions, building a Lua module for Windows requires having Lua
336336
In contrast, on Linux and macOS, modules can be built without any external dependencies using the `-undefined=dynamic_lookup` linker flag.
337337

338338
With Rust 1.71+ it's now possible to lift this restriction for Windows as well. You can build modules normally and they will be linked with
339-
`lua54.dll`/`lua53.dll`/`lua52.dll`/`lua51.dll` depending on the enabled Lua version.
339+
`lua5x.dll` depending on the enabled Lua version.
340340

341341
You still need to have the dll although, linked to application where the module will be loaded.
342342

examples/module/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ crate-type = ["cdylib"]
1010
[workspace]
1111

1212
[features]
13+
lua55 = ["mlua/lua55"]
1314
lua54 = ["mlua/lua54"]
1415
lua53 = ["mlua/lua53"]
1516
lua52 = ["mlua/lua52"]

0 commit comments

Comments
 (0)