tinywasm-parser 0.9.0

Parser and lowering pipeline for TinyWasm
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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