* deps: bump wasmparser to 0.39.2 This has a bug fix for multi-value Wasm validation that is required for getting the spec tests passing. https://github.com/yurydelendik/wasmparser.rs/pull/135 * Update cranelift to 0.46.1 to get multi-value Wasm support The `cranelift_wasm` APIs had to change a little bit to maintain state necessary when translating multi-value Wasm blocks. The `translate_module` function now returns a `ModuleTranslationState` that is borrowed during each function's translation. * Enable multi-value proposal's spec tests This enables all the Wasm multi-value proposal's spec tests other than the ones that rely on functions having more return values than registers available on the target. That is not supported by cranelift yet. * wasmtime-interface-types: always use multi-value Wasm And remove the return pointer hacks that work around the lack of multi-value.
35 lines
1.3 KiB
TOML
35 lines
1.3 KiB
TOML
[package]
|
|
name = "wasmtime-debug"
|
|
version = "0.2.0"
|
|
authors = ["The Wasmtime Project Developers"]
|
|
description = "Debug utils for WebAsssembly code in Cranelift"
|
|
repository = "https://github.com/CraneStation/wasmtime"
|
|
documentation = "https://docs.rs/wasmtime-debug/"
|
|
categories = ["wasm"]
|
|
keywords = ["webassembly", "wasm", "debuginfo"]
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
gimli = "0.19.0"
|
|
wasmparser = "0.39.2"
|
|
cranelift-codegen = { version = "0.46.1", features = ["enable-serde"] }
|
|
cranelift-entity = { version = "0.46.1", features = ["enable-serde"] }
|
|
cranelift-wasm = { version = "0.46.1", features = ["enable-serde"] }
|
|
faerie = "0.11.0"
|
|
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
|
|
target-lexicon = { version = "0.8.1", default-features = false }
|
|
failure = { version = "0.1.3", default-features = false }
|
|
failure_derive = { version = "0.1.3", default-features = false }
|
|
hashbrown = { version = "0.6.0", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["cranelift-codegen/std", "cranelift-wasm/std", "wasmtime-environ/std"]
|
|
core = ["hashbrown/nightly", "cranelift-codegen/core", "cranelift-wasm/core"]
|
|
|
|
[badges]
|
|
maintenance = { status = "experimental" }
|
|
travis-ci = { repository = "CraneStation/wasmtime" }
|