* Add support for wasi_snapshot_preview1. This adds support for the new ABI, while preserving compatibility support for the old ABI. * Fix compilation on platforms where nlink_t isn't 64-bit. * rustfmt * Fix Windows build errors.
26 lines
722 B
TOML
26 lines
722 B
TOML
[package]
|
|
name = "wig"
|
|
version = "0.7.0"
|
|
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"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "1.0.2"
|
|
proc-macro2 = "1.0.6"
|
|
heck = "0.3.1"
|
|
# We include the WASI repo primarily for the witx files, but it's also useful
|
|
# to use the witx parser it contains, rather than the witx crate from
|
|
# crates.io, so that it always matches the version of the witx files.
|
|
witx = { path = "../WASI/tools/witx" }
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|