From f3fc15c197e06b379212d3237677564cdaec0357 Mon Sep 17 00:00:00 2001 From: Chip Senkbeil Date: Tue, 12 Oct 2021 11:20:44 -0500 Subject: [PATCH] Bump mlua to v0.6.6 --- Cargo.lock | 8 +++++--- distant-lua-tests/Cargo.toml | 2 +- distant-lua/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 88e25bb..6a1c4f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1012,8 +1012,9 @@ dependencies = [ [[package]] name = "mlua" -version = "0.6.5" -source = "git+https://github.com/khvzak/mlua.git#458b06796c39d3c04e7c4c250f84ccf7f5958106" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4235d7e740d73d7429df6f176c81b248f05c39d67264d45a7d8cecb67c227f6f" dependencies = [ "bstr 0.2.17", "cc", @@ -1033,7 +1034,8 @@ dependencies = [ [[package]] name = "mlua_derive" version = "0.6.0" -source = "git+https://github.com/khvzak/mlua.git#458b06796c39d3c04e7c4c250f84ccf7f5958106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1713774a29db53a48932596dc943439dd54eb56a9efaace716719cc10fa82d5b" dependencies = [ "itertools", "once_cell", diff --git a/distant-lua-tests/Cargo.toml b/distant-lua-tests/Cargo.toml index 3e3a314..c9f310d 100644 --- a/distant-lua-tests/Cargo.toml +++ b/distant-lua-tests/Cargo.toml @@ -20,7 +20,7 @@ assert_fs = "1.0.4" distant-core = { path = "../distant-core" } futures = "0.3.17" indoc = "1.0.3" -mlua = { git = "https://github.com/khvzak/mlua.git", features = ["async", "macros", "serialize"] } +mlua = { version = "0.6.6", features = ["async", "macros", "serialize"] } once_cell = "1.8.0" predicates = "2.0.2" rstest = "0.11.0" diff --git a/distant-lua/Cargo.toml b/distant-lua/Cargo.toml index e7502c0..ae7e17b 100644 --- a/distant-lua/Cargo.toml +++ b/distant-lua/Cargo.toml @@ -28,7 +28,7 @@ distant-core = { version = "=0.15.0-alpha.14", path = "../distant-core" } distant-ssh2 = { version = "=0.15.0-alpha.14", features = ["serde"], path = "../distant-ssh2" } futures = "0.3.17" log = "0.4.14" -mlua = { git = "https://github.com/khvzak/mlua.git", features = ["async", "macros", "module", "serialize"] } +mlua = { version = "0.6.6", features = ["async", "macros", "module", "serialize"] } once_cell = "1.8.0" oorandom = "11.1.3" paste = "1.0.5"