forked from bytecodealliance/wasm-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (24 loc) · 816 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
[package]
name = "wasm-mutate"
version.workspace = true
edition.workspace = true
license.workspace = true
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-mutate"
description = "A WebAssembly test case mutator"
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
clap = { workspace = true, optional = true }
egg = "0.6.0"
log = { workspace = true }
rand = { workspace = true }
thiserror = "1.0.28"
wasm-encoder = { workspace = true, features = ['std', 'wasmparser'] }
wasmparser = { workspace = true, features = ['std', 'simd'] }
[dev-dependencies]
anyhow = { workspace = true }
env_logger = { workspace = true }
wasmparser = { workspace = true, features = ['std', 'validate', 'features', 'simd'] }
wasmprinter = { workspace = true }
wat = { workspace = true }