Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ luajit = ["mlua/luajit"]
crate-type = ["cdylib"]

[dependencies]
mlua = { version = "0.9.9", features = ["luajit", "module"] }
mlua = { version = "0.9.9", features = [ "module"] }
Copy link

Copilot AI Dec 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's an extra space before "module" in the features array. The spacing should be consistent with the formatting of other dependencies in the file.

Suggested change
mlua = { version = "0.9.9", features = [ "module"] }
mlua = { version = "0.9.9", features = ["module"] }

Copilot uses AI. Check for mistakes.
reqwest = { version = "=0.12.7", features = ["blocking", "native-tls-alpn"] }
bstr = "1.10.0"
Loading