Files
wasmtime/crates/fuzzing/Cargo.toml
Nick Fitzgerald 4866fa0e6a Limit rayon to one thread during fuzzing
This should enable more deterministic execution.
2020-02-28 18:35:09 -08:00

22 lines
478 B
TOML

[package]
authors = ["The Wasmtime Project Developers"]
description = "Fuzzing infrastructure for Wasmtime"
edition = "2018"
name = "wasmtime-fuzzing"
publish = false
version = "0.12.0"
[dependencies]
anyhow = "1.0.22"
arbitrary = { version = "0.4.0", features = ["derive"] }
binaryen = "0.10.0"
env_logger = "0.7.1"
log = "0.4.8"
rayon = "1.2.1"
wasmparser = "0.51.2"
wasmprinter = "0.2.1"
wasmtime = { path = "../api", version = "0.12.0" }
[dev-dependencies]
wat = "1.0.10"