-
-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'mlua-rs:main' into main
- Loading branch information
Showing
19 changed files
with
160 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mlua" | ||
version = "0.10.1" # remember to update mlua_derive | ||
version = "0.10.2" # remember to update mlua_derive | ||
authors = ["Aleksandr Orlenko <[email protected]>", "kyren <[email protected]>"] | ||
rust-version = "1.79.0" | ||
edition = "2021" | ||
|
@@ -46,7 +46,7 @@ anyhow = ["dep:anyhow", "error-send"] | |
userdata-wrappers = [] | ||
|
||
[dependencies] | ||
mlua_derive = { version = "=0.10.0", optional = true, path = "mlua_derive" } | ||
mlua_derive = { version = "=0.10.1", optional = true, path = "mlua_derive" } | ||
bstr = { version = "1.0", features = ["std"], default-features = false } | ||
either = "1.0" | ||
num-traits = { version = "0.2.14" } | ||
|
@@ -58,7 +58,7 @@ serde-value = { version = "0.7", optional = true } | |
parking_lot = { version = "0.12", features = ["arc_lock"] } | ||
anyhow = { version = "1.0", optional = true } | ||
|
||
ffi = { package = "mlua-sys", version = "0.6.5", path = "mlua-sys" } | ||
ffi = { package = "mlua-sys", version = "0.6.6", path = "mlua-sys" } | ||
|
||
[target.'cfg(unix)'.dependencies] | ||
libloading = { version = "0.8", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mlua-sys" | ||
version = "0.6.5" | ||
version = "0.6.6" | ||
authors = ["Aleksandr Orlenko <[email protected]>"] | ||
rust-version = "1.71" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mlua_derive" | ||
version = "0.10.0" | ||
version = "0.10.1" | ||
authors = ["Aleksandr Orlenko <[email protected]>"] | ||
edition = "2021" | ||
description = "Procedural macros for the mlua crate." | ||
|
@@ -12,12 +12,12 @@ license = "MIT" | |
proc-macro = true | ||
|
||
[features] | ||
macros = ["proc-macro-error", "itertools", "regex", "once_cell"] | ||
macros = ["proc-macro-error2", "itertools", "regex", "once_cell"] | ||
|
||
[dependencies] | ||
quote = "1.0" | ||
proc-macro2 = { version = "1.0", features = ["span-locations"] } | ||
proc-macro-error = { version = "1.0", optional = true } | ||
proc-macro-error2 = { version = "2.0.1", optional = true } | ||
syn = { version = "2.0", features = ["full"] } | ||
itertools = { version = "0.13", optional = true } | ||
regex = { version = "1.4", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.