forked from bytecodealliance/wasm-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (25 loc) · 831 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
29
[package]
name = "wasmprinter"
version.workspace = true
authors = ["Alex Crichton <[email protected]>"]
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']
component-model = ['wasmparser/component-model']