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.
25 lines
771 B
TOML
25 lines
771 B
TOML
[package]
|
|
name = "peepmatic-fuzzing"
|
|
version = "0.66.0"
|
|
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
arbitrary = { version = "0.4.1", features = ["derive"] }
|
|
bincode = "1.2.1"
|
|
env_logger = "0.8.1"
|
|
fst = "0.4.1"
|
|
log = "0.4.8"
|
|
peepmatic = { path = "../.." }
|
|
peepmatic-automata = { path = "../automata", features = ["serde"] }
|
|
peepmatic-runtime = { path = "../runtime", features = ["construct"] }
|
|
peepmatic-test = { path = "../test" }
|
|
peepmatic-test-operator = { path = "../test-operator" }
|
|
peepmatic-traits = { path = "../traits" }
|
|
rand = { version = "0.7.3", features = ["small_rng"] }
|
|
serde = "1.0.106"
|
|
wast = "31.0.0"
|