1[package]
2name = "wasm-bindgen-macro"
3version = "0.2.92"
4authors = ["The wasm-bindgen Developers"]
5license = "MIT OR Apache-2.0"
6repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro"
7homepage = "https://rustwasm.github.io/wasm-bindgen/"
8documentation = "https://docs.rs/wasm-bindgen"
9description = """
10Definition of the `#[wasm_bindgen]` attribute, an internal dependency
11"""
12edition = "2018"
13rust-version = "1.57"
14
15[lib]
16proc-macro = true
17
18[features]
19spans = ["wasm-bindgen-macro-support/spans"]
20xxx_debug_only_print_generated_code = []
21strict-macro = ["wasm-bindgen-macro-support/strict-macro"]
22
23[dependencies]
24wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.92" }
25quote = "1.0"
26
27[dev-dependencies]
28trybuild = "1.0"
29wasm-bindgen = { path = "../..", version = "0.2.92" }
30wasm-bindgen-futures = { path = "../futures", version = "0.4.42" }
31web-sys = { path = "../web-sys", version = "0.3.69", features = ["Worker"] }
32