[package]
edition = "2024"
rust-version = "1.85"
name = "wasm-opcode-table"
version = "0.1.0"
authors = ["Vladimir Motylenko <me@vldm.cc>"]
build = false
include = [
"src/**/*",
"instructions.toml",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed parser for the WebAssembly instruction opcode table in 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",
]
license = "Apache-2.0"
repository = "https://github.com/vldm/wasm-opcode-table-toml"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
instructions-toml = []
[lib]
name = "wasm_opcode_table"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.toml]
version = "0.8"