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