Path: blob/main/crates/wiggle/generate/Cargo.toml
1693 views
[package]1name = "wiggle-generate"2version.workspace = true3authors = ["Pat Hickey <[email protected]>", "Jakub Konka <[email protected]>", "Alex Crichton <[email protected]>"]4license = "Apache-2.0 WITH LLVM-exception"5edition.workspace = true6rust-version.workspace = true7description = "Library crate for wiggle code generator."8categories = ["wasm"]9keywords = ["webassembly", "wasm"]10repository = "https://github.com/bytecodealliance/wasmtime"11readme = "README.md"12include = ["src/**/*", "README.md", "LICENSE"]1314[lints]15workspace = true1617[dependencies]18witx = "0.9.1"19quote = { workspace = true }20proc-macro2 = { workspace = true }21heck = { workspace = true }22anyhow = { workspace = true }23syn = { workspace = true, features = ["full"] }242526