Files
wasmtime/cranelift/fuzz/Cargo.toml
Pat Hickey 89d741f8ae upgrade to target-lexicon 0.8.0
* the target-lexicon crate no longer has or needs the std feature
  in cargo, so we can delete all default-features=false, any mentions
  of its std feature, and the nostd configs in many lib.rs files
* the representation of arm architectures has changed, so some case
  statements needed refactoring
2019-09-04 15:12:17 -07:00

31 lines
735 B
TOML

[package]
name = "clif-wasm-fuzz"
version = "0.0.1"
authors = ["foote@fastly.com"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
cargo-fuzz = "*"
binaryen = { git = "https://github.com/pepyakin/binaryen-rs.git" }
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
cranelift-codegen = { path = "../cranelift-codegen" }
cranelift-wasm = { path = "../cranelift-wasm" }
cranelift-reader = { path = "../cranelift-reader" }
target-lexicon = "0.8.0"
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "fuzz_translate_module"
path = "fuzz_translate_module.rs"
[[bin]]
name = "fuzz_reader_parse_test"
path = "fuzz_reader_parse_test.rs"