waffle/Cargo.toml

32 lines
722 B
TOML
Raw Normal View History

2021-11-13 06:16:54 +00:00
[package]
name = "waffle"
2024-04-02 20:20:38 +00:00
version = "0.0.27"
2021-11-13 06:16:54 +00:00
description = "Wasm Analysis Framework For Lightweight Experiments"
authors = ["Chris Fallin <chris@cfallin.org>"]
2021-11-13 06:16:54 +00:00
license = "Apache-2.0 WITH LLVM-exception"
edition = "2018"
[dependencies]
wasmparser = "0.202"
wasm-encoder = "0.202"
anyhow = "1.0"
structopt = "0.3"
log = "0.4"
env_logger = "0.11"
2021-11-14 04:59:37 +00:00
fxhash = "0.2"
smallvec = "1.13"
rayon = "1.10"
lazy_static = "1.4"
libc = "0.2"
addr2line = "0.21"
# For fuzzing only. Versions must match those in fuzz/Cargo.toml.
libfuzzer-sys = { version = "0.4", optional = true }
2024-02-03 18:47:08 +00:00
indexmap = "2.2.2"
2024-03-14 20:58:45 +00:00
stacker = "0.1.15"
wasm-smith = { version = "0.202", optional = true }
[features]
default = []
fuzzing = ["libfuzzer-sys", "wasm-smith"]