summaryrefslogtreecommitdiff
path: root/crates/parser/Cargo.toml
blob: e45d45262a8ce07f58ba69b8e3398d7c43a6e518 (plain)
[package]
name="tinywasm-parser"
version="0.0.0"
edition="2021"

[dependencies]
# fork of wasmparser with no_std support, see https://github.com/bytecodealliance/wasmtime/issues/3495
# TODO: create dependency free parser
wasmparser={version="0.100", package="wasmparser-nostd", default-features=false}
log="0.4"
tinywasm-types={path="../types"}

[features]
default=["std"]
std=[]