wast 3.0.2

Customizable Rust parsers for the WebAssembly Text formats WAT and WAST
Documentation
[package]
name = "wast"
version = "3.0.2"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/alexcrichton/wat/tree/master/crates/wast"
homepage = "https://github.com/alexcrichton/wat/tree/master/crates/wast"
documentation = "https://docs.rs/wast"
description = """
Customizable Rust parsers for the WebAssembly Text formats WAT and WAST
"""

[dependencies]
leb128 = "0.2"

[dev-dependencies]
rayon = "1.0"
anyhow = "1.0"
tempfile = "3.1"
wasmparser = "0.39"
serde_json = "1.0"

[features]
default = ['wasm-module']

# Includes default parsing support for `*.wat` and `*.wast` files (wasm
# modules). This isn't always needed though if you're parsing just an
# s-expression based format. If you'd like to slim down this dependency to just
# the lexer, parser framework, and token support, this feature can be disabled.
#
# This feature is turned on by default.
wasm-module = []