2021-11-13 00:16:54 -06:00
|
|
|
[package]
|
|
|
|
name = "waffle"
|
2023-02-24 16:40:53 -06:00
|
|
|
version = "0.0.6"
|
2021-11-13 00:16:54 -06:00
|
|
|
description = "Wasm Analysis Framework For Lightweight Experiments"
|
2021-11-13 02:52:35 -06:00
|
|
|
authors = ["Chris Fallin <chris@cfallin.org>"]
|
2021-11-13 00:16:54 -06:00
|
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-23 01:30:11 -06:00
|
|
|
wasmparser = "0.95"
|
2022-11-23 01:31:02 -06:00
|
|
|
wasm-encoder = "0.20"
|
2021-11-13 02:52:35 -06:00
|
|
|
anyhow = "1.0"
|
|
|
|
structopt = "0.3"
|
|
|
|
log = "0.4"
|
2021-11-13 22:59:37 -06:00
|
|
|
env_logger = "0.9"
|
|
|
|
fxhash = "0.2"
|
2021-11-21 19:15:26 -06:00
|
|
|
smallvec = "1.7"
|
2021-12-24 15:00:21 -06:00
|
|
|
rayon = "1.5"
|
2022-10-26 10:15:18 -05:00
|
|
|
lazy_static = "1.4"
|
|
|
|
libc = "0.2"
|
2023-02-10 22:55:45 -06:00
|
|
|
addr2line = "0.19"
|
2023-02-24 23:24:09 -06:00
|
|
|
|
|
|
|
# For fuzzing only. Versions must match those in fuzz/Cargo.toml.
|
|
|
|
libfuzzer-sys = { version = "0.4", optional = true }
|
|
|
|
wasm-smith = { version = "0.8", optional = true }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
fuzzing = ["libfuzzer-sys", "wasm-smith"]
|