forked from bytecodealliance/wasm-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
28 lines (25 loc) · 865 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
[package]
authors = ["Nick Fitzgerald <[email protected]>"]
categories = ["command-line-utilities", "development-tools", "development-tools::testing", "wasm"]
description = "A WebAssembly test case shrinker"
edition.workspace = true
keywords = ["reducer", "reduce", "bug", "crash"]
license = "Apache-2.0 WITH LLVM-exception"
readme = "./README.md"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-shrink"
name = "wasm-shrink"
version.workspace = true
[lints]
workspace = true
[dependencies]
anyhow = { workspace = true }
blake3 = "1.2.0"
log = { workspace = true }
rand = { workspace = true }
clap = { workspace = true, optional = true }
wasm-mutate = { workspace = true }
wasmparser = { workspace = true }
[dev-dependencies]
env_logger = { workspace = true }
wasmprinter = { path = "../wasmprinter" }
wat = { path = "../wat" }