forked from bytecodealliance/wasm-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 916 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
authors = ["Nick Fitzgerald <[email protected]>"]
categories = ["command-line-utilities", "development-tools", "development-tools::testing", "wasm"]
description = "A WebAssembly test case generator"
documentation = "https://docs.rs/wasm-smith"
edition = "2018"
license = "MPL-2.0"
name = "wasm-smith"
readme = "./README.md"
repository = "https://github.com/bytecodealliance/wasm-tools"
version = "0.1.12"
[[bin]]
name = "wasm-smith"
path = "src/bin/wasm-smith.rs"
required-features = ["structopt"]
[[bench]]
name = "corpus"
harness = false
[dependencies]
arbitrary = { version = "0.4.6", features = ["derive"] }
leb128 = "0.2.4"
structopt = { version = "0.3.16", optional = true }
wasm-encoder = { version = "0.1.0", path = "../wasm-encoder" }
[dev-dependencies]
criterion = "0.3.3"
libfuzzer-sys = "0.3.4"
rand = { version = "0.7.3", features = ["small_rng"] }
wasmparser = { path = "../wasmparser" }