Skip to content

Commit ae4ddaa

Browse files
committed
Play with vendored lua feature-flags on docs.rs
Does it work now?
1 parent 5ef1f24 commit ae4ddaa

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "luao3"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
description = "Lua bindings for Rust, oriented around macros. Lossly inspired by pyo3, but based on mlua."
66
repository = "https://github.com/Techcable/luao3"
@@ -33,7 +33,9 @@ lua52 = ["mlua/lua52"]
3333
lua53 = ["mlua/lua53"]
3434
lua54 = ["mlua/lua54"]
3535
module = ["mlua/module"]
36+
# vendored source for lua (see mlua docs)
37+
vendored = ["mlua/vendored"]
3638

3739
[package.metadata.docs.rs]
38-
# Use vendored mlua on docs.rs, because we want it to compile ;)
39-
features = ["mlua/vendored"]
40+
# Use vendored lua on docs.rs, because we want it to compile ;)
41+
features = ["vendored"]

0 commit comments

Comments
 (0)