[package]
name = "wast"
version = "44.0.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast"
homepage = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast"
documentation = "https://docs.rs/wast"
description = """
Customizable Rust parsers for the WebAssembly Text formats WAT and WAST
"""
[dependencies]
leb128 = "0.2"
unicode-width = "0.1.9"
memchr = "2.4.1"
wasm-encoder = { version = "0.14.0", path = "../wasm-encoder" }
[dev-dependencies]
anyhow = "1.0"
rayon = "1.0"
wasmparser = { path = "../wasmparser" }
wat = { path = "../wat" }
[features]
default = ['wasm-module']
wasm-module = []
[[test]]
name = "parse-fail"
harness = false