Files
wasmtime/cranelift/fuzzgen/Cargo.toml
Trevor Elliott 36e5bdfd0e Fuzz multiple targets in cranelift-icache (#5482)
Fuzz additional targets in the cranelift-icache target. The list of targets fuzzed is controlled by the targets enabled in fuzz/Cargo.toml.

This PR also reworks how instruction disabling is done in function generator, moving the deny-list to a function to make the decision at runtime instead of compile time.
2023-01-05 18:49:23 +00:00

20 lines
508 B
TOML

[package]
name = "cranelift-fuzzgen"
version = "0.0.0"
authors = ["The Wasmtime Project Developers"]
description = "Cranelift module generator"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasmtime"
readme = "README.md"
edition.workspace = true
publish = false
[dependencies]
cranelift = { workspace = true }
cranelift-native = { workspace = true }
anyhow = { workspace = true }
arbitrary = "1.0.0"
target-lexicon = { workspace = true, features = ["std"] }