We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef1f24 commit ae4ddaaCopy full SHA for ae4ddaa
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "luao3"
3
-version = "0.1.1"
+version = "0.1.2"
4
edition = "2021"
5
description = "Lua bindings for Rust, oriented around macros. Lossly inspired by pyo3, but based on mlua."
6
repository = "https://github.com/Techcable/luao3"
@@ -33,7 +33,9 @@ lua52 = ["mlua/lua52"]
33
lua53 = ["mlua/lua53"]
34
lua54 = ["mlua/lua54"]
35
module = ["mlua/module"]
36
+# vendored source for lua (see mlua docs)
37
+vendored = ["mlua/vendored"]
38
39
[package.metadata.docs.rs]
-# Use vendored mlua on docs.rs, because we want it to compile ;)
-features = ["mlua/vendored"]
40
+# Use vendored lua on docs.rs, because we want it to compile ;)
41
+features = ["vendored"]
0 commit comments