diff --git a/Cargo.lock b/Cargo.lock index 153812c..8369b86 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -355,7 +355,8 @@ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" [[package]] name = "mlua" version = "0.9.5" -source = "git+https://github.com/mlua-rs/mlua.git?rev=1754226c7440ec6c194d2d678ec083b621d46ceb#1754226c7440ec6c194d2d678ec083b621d46ceb" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d3561f79659ff3afad7b25e2bf2ec21507fe601ebecb7f81088669ec4bfd51e" dependencies = [ "bstr", "erased-serde", @@ -391,7 +392,8 @@ dependencies = [ [[package]] name = "mlua-sys" version = "0.5.1" -source = "git+https://github.com/mlua-rs/mlua.git?rev=1754226c7440ec6c194d2d678ec083b621d46ceb#1754226c7440ec6c194d2d678ec083b621d46ceb" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2847b42764435201d8cbee1f517edb79c4cca4181877b90047587c89e1b7bce4" dependencies = [ "cc", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index 83b1d5e..71eb7b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ futures-lite = "2.2" rustc-hash = "1.1" tracing = "0.1" -mlua = { git = "https://github.com/mlua-rs/mlua.git", rev = "1754226c7440ec6c194d2d678ec083b621d46ceb", features = [ +mlua = { version = "0.9.5", features = [ "luau", "luau-jit", "async", diff --git a/lib/thread_id.rs b/lib/thread_id.rs index ca16827..f8b10b9 100644 --- a/lib/thread_id.rs +++ b/lib/thread_id.rs @@ -11,16 +11,22 @@ use mlua::prelude::*; The actual thread may or may not still exist and be active at any given point in time. */ #[derive(Debug, Clone, Copy, PartialEq, Eq)] -pub struct ThreadId(usize); +pub struct ThreadId { + inner: usize, +} impl From<&LuaThread<'_>> for ThreadId { fn from(thread: &LuaThread) -> Self { - Self(thread.to_pointer() as usize) + // TODO: Use this to avoid clone when mlua releases a new version with it + // Self { inner: thread.to_pointer() as usize } + Self { + inner: LuaValue::Thread(thread.clone()).to_pointer() as usize, + } } } impl Hash for ThreadId { fn hash(&self, state: &mut H) { - self.0.hash(state); + self.inner.hash(state); } }