* Upgrade all crates to the Rust 2021 edition
I've personally started using the new format strings for things like
`panic!("some message {foo}")` or similar and have been upgrading crates
on a case-by-case basis, but I think it probably makes more sense to go
ahead and blanket upgrade everything so 2021 features are always
available.
* Fix compile of the C API
* Fix a warning
* Fix another warning
27 lines
763 B
TOML
27 lines
763 B
TOML
[package]
|
|
name = "wiggle-generate"
|
|
version = "0.36.0"
|
|
authors = ["Pat Hickey <phickey@fastly.com>", "Jakub Konka <kubkon@jakubkonka.com>", "Alex Crichton <alex@alexcrichton.com>"]
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
edition = "2021"
|
|
description = "Library crate for wiggle code generator."
|
|
categories = ["wasm"]
|
|
keywords = ["webassembly", "wasm"]
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
readme = "README.md"
|
|
include = ["src/**/*", "README.md", "LICENSE"]
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
witx = { version = "0.9.1", path = "../../wasi-common/WASI/tools/witx" }
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
heck = "0.3"
|
|
anyhow = "1"
|
|
syn = { version = "1.0", features = ["full"] }
|
|
shellexpand = "2.0"
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|