Update host packages
This commit is contained in:
parent
a36c1e221e
commit
a45f642d4c
File diff suppressed because it is too large
Load Diff
14
Cargo.toml
14
Cargo.toml
|
@ -8,13 +8,13 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1.80"
|
async-trait = "0.1.83"
|
||||||
tokio = { version = "1.37.0", features = ["full"] }
|
tokio = { version = "1.41.1", features = ["full"] }
|
||||||
wasmtime = "23.0.1"
|
wasmtime = "26.0.1"
|
||||||
wasmtime-wasi = "23.0.1"
|
wasmtime-wasi = "26.0.1"
|
||||||
lyra-ecs = { path = "./lyra-engine/lyra-ecs" }
|
lyra-ecs = { path = "./lyra-engine/crates/lyra-ecs" }
|
||||||
slab = "0.4.9"
|
slab = "0.4.9"
|
||||||
thiserror = "1.0.58"
|
thiserror = "2.0.0"
|
||||||
|
|
||||||
common-api = { path = "./common-api" }
|
common-api = { path = "./common-api" }
|
||||||
anyhow = "1.0.86"
|
anyhow = "1.0.93"
|
||||||
|
|
|
@ -257,9 +257,10 @@ impl wasm_ecs::HostEcsWorld for Imports {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn drop(
|
|
||||||
|
async fn drop(
|
||||||
&mut self,
|
&mut self,
|
||||||
this: wasmtime::component::Resource<wasm_ecs::EcsWorld>,
|
this: wasmtime::component::Resource<EcsWorld>,
|
||||||
) -> wasmtime::Result<()> {
|
) -> wasmtime::Result<()> {
|
||||||
let mut world_entry = self
|
let mut world_entry = self
|
||||||
.world_slab
|
.world_slab
|
||||||
|
@ -345,7 +346,7 @@ impl wasm_ecs::HostEcsDynamicView for Imports {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn drop(
|
async fn drop(
|
||||||
&mut self,
|
&mut self,
|
||||||
this: wasmtime::component::Resource<wasm_ecs::EcsDynamicView>,
|
this: wasmtime::component::Resource<wasm_ecs::EcsDynamicView>,
|
||||||
) -> wasmtime::Result<()> {
|
) -> wasmtime::Result<()> {
|
||||||
|
|
Loading…
Reference in New Issue