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