* witx tagged unions: updates to wig to use new semantics * wig: emit a `#variant: ()` union variant for empty variants * wasi-common: translate to use tagged unions * update to flattened layout of event struct * wig: generate layout tests, and delete bindgen ones the bindgen tests became out-of-date with the latest changes to the representation of unions, and the re-jiggering of various struct definitions that went along with it. * wasi: point at master with tagged union PR merged * fix event struct repr on windows
24 lines
543 B
TOML
24 lines
543 B
TOML
[package]
|
|
name = "wig"
|
|
version = "0.9.2"
|
|
authors = ["Dan Gohman <sunfish@mozilla.com>"]
|
|
description = "WebAssembly Interface Generator"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
categories = ["wasm"]
|
|
keywords = ["webassembly", "wasm"]
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
edition = "2018"
|
|
include = ["src/**/*", "LICENSE", "WASI"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "1.0.2"
|
|
proc-macro2 = "1.0.6"
|
|
heck = "0.3.1"
|
|
witx = { path = "WASI/tools/witx" }
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|