blob: df8acce2e160d571e3c3baf225935f452d230690 (
plain)
[package]
name="tinywasm-parser"
version.workspace=true
description="TinyWasm parser"
edition.workspace=true
license.workspace=true
authors.workspace=true
repository.workspace=true
[dependencies]
# fork of wasmparser with no_std support, see https://github.com/bytecodealliance/wasmtime/issues/3495
wasmparser={version="0.100", package="wasmparser-nostd", default-features=false}
log={version="0.4", optional=true}
tinywasm-types={version="0.3.0-alpha.0", path="../types", default-features=false}
[features]
default=["std", "logging"]
logging=["log"]
std=["tinywasm-types/std"]
|