[package]
edition = "2024"
rust-version = "1.95"
name = "tinywasm-parser"
version = "0.9.0"
authors = ["Henry Gressmann <crates@henrygressmann.de>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser and lowering pipeline for TinyWasm"
readme = "README.md"
keywords = [
"tinywasm",
"wasm",
"webassembly",
"interpreter",
"no-std",
]
categories = [
"wasm",
"no-std",
"compilers",
"virtualization",
"embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/explodingcamera/tinywasm"
resolver = "2"
[features]
default = [
"std",
"log",
"parallel",
]
log = ["dep:log"]
parallel = ["std"]
std = [
"tinywasm-types/std",
"wasmparser/std",
]
[lib]
name = "tinywasm_parser"
path = "src/lib.rs"
[dependencies.log]
version = "0.4"
optional = true
[dependencies.tinywasm-types]
version = "0.9.0"
default-features = false
[dependencies.wasmparser]
version = "0.248"
features = [
"validate",
"features",
"simd",
]
default-features = false