forked from bytecodealliance/wasm-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 674 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (32 loc) · 674 Bytes
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
33
34
35
36
37
[package]
name = "wasm-tools"
version = "0.1.0"
authors = ["The Wasmtime Project Developers"]
edition = "2018"
publish = false
[workspace]
members = ['fuzz']
[dependencies]
anyhow = "1.0"
env_logger = "0.7"
getopts = "0.2"
log = "0.4"
rayon = "1.0"
wasmparser = { path = "crates/wasmparser" }
wasmprinter = { path = "crates/wasmprinter" }
wast = { path = "crates/wast" }
wat = { path = "crates/wat" }
wasmparser-dump = { path = "crates/dump" }
[dev-dependencies]
anyhow = "1.0"
getopts = "0.2"
serde_json = "1.0"
tempfile = "3.1"
diff = "0.1"
wasmparser-dump = { path = 'crates/dump' }
[[test]]
name = "dump"
harness = false
[[test]]
name = "roundtrip"
harness = false