* Update cranelift to 0.58.0 * Update `wasmprinter` dep to require 0.2.1 We already had it in the lock file, but this ensures we won't ever go back down. * Ensure that our error messages match `assert_invalid`'s The bulk of this work was done in https://github.com/bytecodealliance/wasmparser/pull/186 but now we can test it at the `wasmtime` level as well. Fixes #492 * Stop feeling guilty about not matching `assert_malformed` messages Remove the "TODO" and stop printing warning messages. These would just be busy work to implement, and getting all the messages the exact same relies on using the same structure as the spec interpreter's parser, which means that where you have a helper function and they don't, then things go wrong, and vice versa. Not worth it. Fixes #492 * Enable (but ignore) the reference-types proposal tests * Match test suite directly, instead of roundabout starts/endswith * Enable (but ignore) bulk memory operations proposal test suite
38 lines
1.2 KiB
TOML
38 lines
1.2 KiB
TOML
[package]
|
|
name = "wasmtime-jit"
|
|
version = "0.9.0"
|
|
authors = ["The Wasmtime Project Developers"]
|
|
description = "JIT-style execution for WebAsssembly code in Cranelift"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
categories = ["wasm"]
|
|
keywords = ["webassembly", "wasm"]
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
cranelift-codegen = { version = "0.58.0", features = ["enable-serde"] }
|
|
cranelift-entity = { version = "0.58.0", features = ["enable-serde"] }
|
|
cranelift-wasm = { version = "0.58.0", features = ["enable-serde"] }
|
|
cranelift-native = "0.58.0"
|
|
cranelift-frontend = "0.58.0"
|
|
wasmtime-environ = { path = "../environ", version = "0.9.0" }
|
|
wasmtime-runtime = { path = "../runtime", version = "0.9.0" }
|
|
wasmtime-debug = { path = "../debug", version = "0.9.0" }
|
|
region = "2.0.0"
|
|
thiserror = "1.0.4"
|
|
target-lexicon = { version = "0.10.0", default-features = false }
|
|
wasmparser = "0.51.0"
|
|
more-asserts = "0.2.1"
|
|
anyhow = "1.0"
|
|
cfg-if = "0.1.9"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
winapi = { version = "0.3.7", features = ["winnt", "impl-default"] }
|
|
|
|
[features]
|
|
lightbeam = ["wasmtime-environ/lightbeam"]
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|