2021-11-13 00:16:54 -06:00
|
|
|
[package]
|
2024-06-03 16:26:56 -05:00
|
|
|
name = "portal-pc-waffle"
|
|
|
|
version = "0.0.27+portal"
|
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]
|
2024-06-22 21:53:16 -05:00
|
|
|
wasmparser = { git = "https://github.com/bytecodealliance/wasm-tools" }
|
|
|
|
wasm-encoder = { git = "https://github.com/bytecodealliance/wasm-tools" }
|
2021-11-13 02:52:35 -06:00
|
|
|
anyhow = "1.0"
|
|
|
|
structopt = "0.3"
|
|
|
|
log = "0.4"
|
2024-03-28 15:38:34 -05:00
|
|
|
env_logger = "0.11"
|
2021-11-13 22:59:37 -06:00
|
|
|
fxhash = "0.2"
|
2024-03-28 15:38:34 -05:00
|
|
|
smallvec = "1.13"
|
|
|
|
rayon = "1.10"
|
2022-10-26 10:15:18 -05:00
|
|
|
lazy_static = "1.4"
|
|
|
|
libc = "0.2"
|
2024-03-28 15:38:34 -05:00
|
|
|
addr2line = "0.21"
|
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 }
|
2024-02-03 12:47:08 -06:00
|
|
|
indexmap = "2.2.2"
|
2024-03-14 15:58:45 -05:00
|
|
|
stacker = "0.1.15"
|
2024-03-28 15:38:34 -05:00
|
|
|
wasm-smith = { version = "0.202", optional = true }
|
2024-06-19 21:01:39 -05:00
|
|
|
paste = "1.0.15"
|
2023-02-24 23:24:09 -06:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
fuzzing = ["libfuzzer-sys", "wasm-smith"]
|
2024-06-03 16:26:56 -05:00
|
|
|
|
|
|
|
[lib]
|
2024-06-19 21:01:39 -05:00
|
|
|
name = "waffle"
|