Several of these badges were out of date, with some crates in wide production use marked as "experimental". Insted of trying to keep them up to date, just remove them, since they are [no longer displayed on crates.io]. [no longer displayed on crates.io]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
24 lines
751 B
TOML
24 lines
751 B
TOML
[package]
|
|
name = "wiggle-generate"
|
|
version.workspace = true
|
|
authors = ["Pat Hickey <phickey@fastly.com>", "Jakub Konka <kubkon@jakubkonka.com>", "Alex Crichton <alex@alexcrichton.com>"]
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
edition.workspace = true
|
|
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 = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
syn = { version = "1.0", features = ["full"] }
|
|
shellexpand = "2.0"
|