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