1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 05:12:40 +03:00

mlua 0.9 is now stable; update

This commit is contained in:
Wez Furlong 2023-08-17 09:26:47 -07:00
parent e8171f67d9
commit 0499ab0430
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
6 changed files with 9 additions and 9 deletions

8
Cargo.lock generated
View File

@ -3157,9 +3157,9 @@ dependencies = [
[[package]]
name = "mlua"
version = "0.9.0-rc.3"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01a6500a9fb74b519a85ac206cd57f9f91b270ce39d6cb12ab06a8ed29c3563d"
checksum = "5d6356d163eb2ebaa9caafc3a3ed6aedc686128e913557cd3a5591fd4cd726f5"
dependencies = [
"bstr 1.6.0",
"futures-util",
@ -3171,9 +3171,9 @@ dependencies = [
[[package]]
name = "mlua-sys"
version = "0.3.1"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa5b61f6c943d77dd6ab5f670865670f65b978400127c8bf31c2df7d6e76289a"
checksum = "3ec8b54eddb76093069cce9eeffb4c7b3a1a0fe66962d7bd44c4867928149ca3"
dependencies = [
"cc",
"cfg-if",

View File

@ -23,7 +23,7 @@ lazy_static = "1.4"
libc = "0.2"
log = "0.4"
luahelper = { path = "../luahelper" }
mlua = {version="0.9.0-rc.1", features=["vendored", "lua54", "async", "send"]}
mlua = {version="0.9", features=["vendored", "lua54", "async", "send"]}
# file change notification
notify = "5.0.0"
once_cell = "1.8"

View File

@ -9,5 +9,5 @@ edition = "2018"
[dependencies]
bstr = "1.0"
log = "0.4"
mlua = "0.9.0-rc.1"
mlua = "0.9"
wezterm-dynamic = { path = "../wezterm-dynamic" }

View File

@ -25,7 +25,7 @@ libc = "0.2"
log = "0.4"
luahelper = { path = "../luahelper" }
metrics = { version="0.17", features=["std"]}
mlua = "0.9.0-rc.1"
mlua = "0.9"
names = { version = "0.12", default-features = false }
nix = {version="0.25", features=["term"]}
parking_lot = "0.12"

View File

@ -62,7 +62,7 @@ lfucache = { path = "../lfucache" }
log = "0.4"
luahelper = { path = "../luahelper" }
metrics = { version="0.17", features=["std"]}
mlua = {version="0.9.0-rc.1", features=["send"]}
mlua = {version="0.9", features=["send"]}
mux = { path = "../mux" }
mux-lua = { path = "../lua-api-crates/mux" }
once_cell = "1.8"

View File

@ -16,7 +16,7 @@ env-bootstrap = { path = "../env-bootstrap" }
libc = "0.2"
log = "0.4"
mux = { path = "../mux" }
mlua = "0.9.0-rc.1"
mlua = "0.9"
openssl = "0.10"
portable-pty = { path = "../pty", features = ["serde_support"]}
promise = { path = "../promise" }