wasm-opcode-table 0.1.0

Typed parser for the WebAssembly instruction opcode table in TOML
Documentation
[package]
name = "wasm-opcode-table"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
description = "Typed parser for the WebAssembly instruction opcode table in TOML"
license = "Apache-2.0"
authors = ["Vladimir Motylenko <me@vldm.cc>"]
repository = "https://github.com/vldm/wasm-opcode-table-toml"
homepage = "https://github.com/vldm/wasm-opcode-table-toml"
documentation = "https://docs.rs/wasm-opcode-table"
readme = "README.md"
keywords = ["wasm", "webassembly", "opcode", "instruction", "toml"]
categories = ["wasm", "parser-implementations", "data-structures"]
include = [
    "src/**/*",
    "instructions.toml",
    "Cargo.toml",
    "README.md",
    "LICENSE",
]

[features]
default = []
instructions-toml = []

[dependencies]
serde = { version = "1", features = ["derive"] }
toml = "0.8"

[package.metadata.docs.rs]
all-features = true