summaryrefslogtreecommitdiff
path: root/crates/parser/Cargo.toml
blob: 3be0bb1cfb2d58b931674051fa48b041b002c645 (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.200.3", package="tinywasm-wasmparser", default-features=false}
log={version="0.4", optional=true}
tinywasm-types={version="0.4.0", path="../types", default-features=false}

[features]
default=["std", "logging"]
logging=["log"]
std=["tinywasm-types/std"]