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
25 lines (23 loc) · 723 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (23 loc) · 723 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
[package]
name = "wasmprinter"
version = "0.2.8"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmprinter"
homepage = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmprinter"
documentation = "https://docs.rs/wasmprinter"
description = """
Rust converter from the WebAssembly binary format to the text format.
"""
[dependencies]
anyhow = "1.0"
wasmparser = { path = '../wasmparser', version = '0.61' }
[dev-dependencies]
diff = "0.1"
getopts = "0.2"
rayon = "1.0"
tempfile = "3.0"
wat = { path = "../wat" }
wast = { path = "../wast" }