* Pick argument and return types based on opcode constraints Co-authored-by: Jamey Sharp <jsharp@fastly.com> * Lazily build the OPCODE_SIGNATURES list * Skip unsupported isplit/iconcat cases * Add an issue reference for the isplit/iconcat exemption * Refactor the deny lists to use exceptions!, and remove redundant entries --------- Co-authored-by: Jamey Sharp <jsharp@fastly.com>
21 lines
541 B
TOML
21 lines
541 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"
|
|
once_cell = { workspace = true }
|
|
target-lexicon = { workspace = true, features = ["std"] }
|