This commit updates the various tooling used by wasmtime which has new updates to the module linking proposal. This is done primarily to sync with WebAssembly/module-linking#26. The main change implemented here is that wasmtime now supports creating instances from a set of values, nott just from instantiating a module. Additionally subtyping handling of modules with respect to imports is now properly handled by desugaring two-level imports to imports of instances. A number of small refactorings are included here as well, but most of them are in accordance with the changes to `wasmparser` and the updated binary format for module linking.
20 lines
592 B
TOML
20 lines
592 B
TOML
[package]
|
|
name = "peepmatic-souper"
|
|
version = "0.69.0"
|
|
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
description = "Converting Souper optimizations into Peepmatic DSL"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
souper-ir = { version = "2.1.0", features = ["parse"] }
|
|
log = "0.4.8"
|
|
|
|
[dev-dependencies]
|
|
peepmatic = { path = "../..", version = "0.69.0" }
|
|
peepmatic-test-operator = { version = "0.69.0", path = "../test-operator" }
|
|
wast = "31.0.0"
|