Path: blob/main/crates/wiggle/macro/Cargo.toml
1692 views
[package]1name = "wiggle-macro"2version.workspace = true3authors = ["Pat Hickey <[email protected]>", "Jakub Konka <[email protected]>", "Alex Crichton <[email protected]>"]4edition.workspace = true5rust-version.workspace = true6license = "Apache-2.0 WITH LLVM-exception"7description = "Wiggle code generator"8categories = ["wasm"]9keywords = ["webassembly", "wasm"]10repository = "https://github.com/bytecodealliance/wasmtime"1112[lints]13workspace = true1415[lib]16proc-macro = true17test = false18doctest = false1920[dependencies]21wiggle-generate = { workspace = true }22quote = { workspace = true }23syn = { workspace = true, features = ["full"] }24proc-macro2 = { workspace = true }2526[dev-dependencies]27wiggle = { path = ".." }2829[features]30wiggle_metadata = []313233