Version 0.0.2

This commit is contained in:
Filip Tibell 2024-03-11 18:40:05 +01:00
parent 139431f94e
commit 3ca27fa51c
No known key found for this signature in database
4 changed files with 12 additions and 8 deletions

View file

@ -8,6 +8,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## `0.0.2` - March 11th, 2024
### Changed
- Upgraded `mlua` version to `0.9.6` for more `ThreadId` optimizations
## `0.0.1` - February 16th, 2024
Initial release

6
Cargo.lock generated
View file

@ -354,9 +354,9 @@ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
[[package]]
name = "mlua"
version = "0.9.5"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d3561f79659ff3afad7b25e2bf2ec21507fe601ebecb7f81088669ec4bfd51e"
checksum = "868d02cb5eb97761bbf6bd6922c1c7a88b8ea252bbf43bd8350a0bf8497a1fc0"
dependencies = [
"bstr",
"erased-serde",
@ -372,7 +372,7 @@ dependencies = [
[[package]]
name = "mlua-luau-scheduler"
version = "0.0.1"
version = "0.0.2"
dependencies = [
"async-executor",
"async-fs",

View file

@ -1,6 +1,6 @@
[package]
name = "mlua-luau-scheduler"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/lune-org/mlua-luau-scheduler"
@ -19,7 +19,7 @@ futures-lite = "2.2"
rustc-hash = "1.1"
tracing = "0.1"
mlua = { version = "0.9.5", features = [
mlua = { version = "0.9.6", features = [
"luau",
"luau-jit",
"async",

View file

@ -17,10 +17,8 @@ pub struct ThreadId {
impl From<&LuaThread<'_>> for ThreadId {
fn from(thread: &LuaThread) -> Self {
// 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,
inner: thread.to_pointer() as usize,
}
}
}