Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/wiggle/macro/Cargo.toml
1692 views
1
[package]
2
name = "wiggle-macro"
3
version.workspace = true
4
authors = ["Pat Hickey <[email protected]>", "Jakub Konka <[email protected]>", "Alex Crichton <[email protected]>"]
5
edition.workspace = true
6
rust-version.workspace = true
7
license = "Apache-2.0 WITH LLVM-exception"
8
description = "Wiggle code generator"
9
categories = ["wasm"]
10
keywords = ["webassembly", "wasm"]
11
repository = "https://github.com/bytecodealliance/wasmtime"
12
13
[lints]
14
workspace = true
15
16
[lib]
17
proc-macro = true
18
test = false
19
doctest = false
20
21
[dependencies]
22
wiggle-generate = { workspace = true }
23
quote = { workspace = true }
24
syn = { workspace = true, features = ["full"] }
25
proc-macro2 = { workspace = true }
26
27
[dev-dependencies]
28
wiggle = { path = ".." }
29
30
[features]
31
wiggle_metadata = []
32
33