waffle/Cargo.toml
2024-06-23 14:27:59 -04:00

36 lines
855 B
TOML

[package]
name = "portal-pc-waffle"
version = "0.0.27+portal"
description = "Wasm Analysis Framework For Lightweight Experiments"
authors = ["Chris Fallin <chris@cfallin.org>"]
license = "Apache-2.0 WITH LLVM-exception"
edition = "2018"
[dependencies]
wasmparser = { path = "../wasm-tools/crates/wasmparser" }
wasm-encoder = { path = "../wasm-tools/crates/wasm-encoder" }
anyhow = "1.0"
structopt = "0.3"
log = "0.4"
env_logger = "0.11"
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 }
indexmap = "2.2.2"
stacker = "0.1.15"
wasm-smith = { version = "0.202", optional = true }
paste = "1.0.15"
[features]
default = []
fuzzing = ["libfuzzer-sys", "wasm-smith"]
[lib]
name = "waffle"