Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ cranelift/isle/veri/veri_engine/test_output
crates/explorer/node_modules
tests/all/pulley_provenance_test.cwasm
tests/all/pulley_provenance_test_component.cwasm
tests/all/pulley_provenance_test_async_component.cwasm
/artifacts
testcase*.wat
testcase*.wasm
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -632,12 +632,9 @@ lto = true
# wasm-wave = { git = "https://github.com/bytecodealliance/wasm-tools" }
# wasm-compose = { git = "https://github.com/bytecodealliance/wasm-tools" }
# wasm-metadata = { git = "https://github.com/bytecodealliance/wasm-tools" }
# wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen" }
# wit-bindgen-rt = { git = "https://github.com/bytecodealliance/wit-bindgen" }
# wit-bindgen-rust-macro = { git = "https://github.com/bytecodealliance/wit-bindgen" }
wit-bindgen = { git = "https://github.com/dicej/wit-bindgen", branch = "no-reads-writes-after-dropped" }
wit-bindgen-rt = { git = "https://github.com/dicej/wit-bindgen", branch = "no-reads-writes-after-dropped" }
wit-bindgen-rust-macro = { git = "https://github.com/dicej/wit-bindgen", branch = "no-reads-writes-after-dropped" }
wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen" }
wit-bindgen-rt = { git = "https://github.com/bytecodealliance/wit-bindgen" }
wit-bindgen-rust-macro = { git = "https://github.com/bytecodealliance/wit-bindgen" }

# wasmparser = { path = '../wasm-tools/crates/wasmparser' }
# wat = { path = '../wasm-tools/crates/wat' }
Expand Down
3 changes: 2 additions & 1 deletion crates/wasmtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ semver = { workspace = true, optional = true }
smallvec = { workspace = true, optional = true }
hashbrown = { workspace = true, features = ["default-hasher"] }
bitflags = { workspace = true }
futures = { workspace = true, features = ["alloc"], optional = true }
futures = { workspace = true, default_features = false, features = ["alloc"], optional = true }
bytes = { workspace = true, optional = true }

[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
Expand Down Expand Up @@ -195,6 +195,7 @@ async = [
"dep:wasmtime-fiber",
"dep:async-trait",
"dep:trait-variant",
"dep:futures",
"wasmtime-component-macro?/async",
"runtime",
]
Expand Down
2 changes: 2 additions & 0 deletions crates/wasmtime/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ pub(crate) mod code_memory;
#[cfg(feature = "debug-builtins")]
pub(crate) mod debug;
pub(crate) mod externals;
#[cfg(feature = "async")]
pub(crate) mod fiber;
pub(crate) mod gc;
pub(crate) mod instance;
pub(crate) mod instantiate;
Expand Down
Loading