* Update wasm-tools crates This commit updates the wasm-tools family of crates as used in Wasmtime. Notably this brings in the update which removes module linking support as well as a number of internal refactorings around names and such within wasmparser itself. This updates all of the wasm translation support which binds to wasmparser as appropriate. Other crates all had API-compatible changes for at least what Wasmtime used so no further changes were necessary beyond updating version requirements. * Update a test expectation
16 lines
583 B
TOML
16 lines
583 B
TOML
[package]
|
|
name = "wasmtime-types"
|
|
version = "0.37.0"
|
|
authors = ["The Wasmtime Project Developers"]
|
|
description = "WebAssembly type definitions for Cranelift"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
documentation = "https://docs.rs/wasmtime-types"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cranelift-entity = { path = "../../cranelift/entity", version = "0.84.0", features = ['enable-serde'] }
|
|
serde = { version = "1.0.94", features = ["derive"] }
|
|
thiserror = "1.0.4"
|
|
wasmparser = { version = "0.84.0", default-features = false }
|