From 5eddd99422075698b6874f1a6085ede0612d8caf Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Tue, 6 Feb 2024 15:02:40 +0100 Subject: [PATCH] Use latest mlua to avoid clone --- Cargo.lock | 6 ++---- Cargo.toml | 2 +- lib/thread_id.rs | 8 +------- 3 files changed, 4 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 154ab27..f108c38 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -311,8 +311,7 @@ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" [[package]] name = "mlua" version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d3561f79659ff3afad7b25e2bf2ec21507fe601ebecb7f81088669ec4bfd51e" +source = "git+https://github.com/mlua-rs/mlua.git?rev=1754226c7440ec6c194d2d678ec083b621d46ceb#1754226c7440ec6c194d2d678ec083b621d46ceb" dependencies = [ "bstr", "erased-serde", @@ -346,8 +345,7 @@ dependencies = [ [[package]] name = "mlua-sys" version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2847b42764435201d8cbee1f517edb79c4cca4181877b90047587c89e1b7bce4" +source = "git+https://github.com/mlua-rs/mlua.git?rev=1754226c7440ec6c194d2d678ec083b621d46ceb#1754226c7440ec6c194d2d678ec083b621d46ceb" dependencies = [ "cc", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index 9b5b1f1..8cdda09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ futures-lite = "2.2" rustc-hash = "1.1" tracing = "0.1" -mlua = { version = "0.9.5", features = [ +mlua = { git = "https://github.com/mlua-rs/mlua.git", rev = "1754226c7440ec6c194d2d678ec083b621d46ceb", features = [ "luau", "luau-jit", "async", diff --git a/lib/thread_id.rs b/lib/thread_id.rs index b5afed4..ca16827 100644 --- a/lib/thread_id.rs +++ b/lib/thread_id.rs @@ -13,15 +13,9 @@ use mlua::prelude::*; #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub struct ThreadId(usize); -impl From> for ThreadId { - fn from(thread: LuaThread) -> Self { - Self(LuaValue::Thread(thread).to_pointer() as usize) - } -} - impl From<&LuaThread<'_>> for ThreadId { fn from(thread: &LuaThread) -> Self { - Self(LuaValue::Thread(thread.clone()).to_pointer() as usize) + Self(thread.to_pointer() as usize) } }