41 lines
681 B
TOML
41 lines
681 B
TOML
[package]
|
|
name = "fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
wasm-smith = "0.8.0"
|
|
|
|
[dependencies.parity-wasm]
|
|
git = "https://github.com/paritytech/parity-wasm.git"
|
|
features = ["multi_value", "sign_ext"]
|
|
|
|
[dependencies.wasm-ast]
|
|
path = "../wasm-ast"
|
|
|
|
[dependencies.codegen-luajit]
|
|
path = "../codegen-luajit"
|
|
|
|
[[bin]]
|
|
name = "full_transpile"
|
|
path = "fuzz_targets/full_transpile.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "just_writer"
|
|
path = "fuzz_targets/just_writer.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "just_builder"
|
|
path = "fuzz_targets/just_builder.rs"
|
|
test = false
|
|
doc = false
|