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
30 lines (26 loc) · 901 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (26 loc) · 901 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
[package]
name = "wasmprinter"
version.workspace = true
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition.workspace = true
license.workspace = true
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.
"""
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
anyhow = { workspace = true }
termcolor = { workspace = true }
wasmparser = { workspace = true, features = ['std', 'simd'] }
[dev-dependencies]
wat = { path = "../wat" }
[features]
default = ['component-model', 'validate']
component-model = ['wasmparser/component-model']
validate = ['wasmparser/validate', 'wasmparser/features']