Update host packages

This commit is contained in:
SeanOMik 2024-11-07 18:02:28 -05:00
parent a36c1e221e
commit a45f642d4c
Signed by: SeanOMik
GPG Key ID: FEC9E2FC15235964
3 changed files with 309 additions and 288 deletions

576
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -8,13 +8,13 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.80"
tokio = { version = "1.37.0", features = ["full"] }
wasmtime = "23.0.1"
wasmtime-wasi = "23.0.1"
lyra-ecs = { path = "./lyra-engine/lyra-ecs" }
async-trait = "0.1.83"
tokio = { version = "1.41.1", features = ["full"] }
wasmtime = "26.0.1"
wasmtime-wasi = "26.0.1"
lyra-ecs = { path = "./lyra-engine/crates/lyra-ecs" }
slab = "0.4.9"
thiserror = "1.0.58"
thiserror = "2.0.0"
common-api = { path = "./common-api" }
anyhow = "1.0.86"
anyhow = "1.0.93"

View File

@ -257,9 +257,10 @@ impl wasm_ecs::HostEcsWorld for Imports {
}
}
fn drop(
async fn drop(
&mut self,
this: wasmtime::component::Resource<wasm_ecs::EcsWorld>,
this: wasmtime::component::Resource<EcsWorld>,
) -> wasmtime::Result<()> {
let mut world_entry = self
.world_slab
@ -345,7 +346,7 @@ impl wasm_ecs::HostEcsDynamicView for Imports {
}
}
fn drop(
async fn drop(
&mut self,
this: wasmtime::component::Resource<wasm_ecs::EcsDynamicView>,
) -> wasmtime::Result<()> {