This commit replaces #4869 and represents the actual version bump that should have happened had I remembered to bump the in-tree version of Wasmtime to 1.0.0 prior to the branch-cut date. Alas!
24 lines
688 B
TOML
24 lines
688 B
TOML
[package]
|
|
name = "wasmtime-component-macro"
|
|
version = "2.0.0"
|
|
authors = ["The Wasmtime Project Developers"]
|
|
description = "Macros for deriving component interface types from Rust types"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
documentation = "https://docs.rs/wasmtime-component-macro/"
|
|
categories = ["wasm"]
|
|
keywords = ["webassembly", "wasm"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "1.0", features = ["extra-traits"] }
|
|
wasmtime-component-util = { path = "../component-util", version = "=2.0.0" }
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|