1 | [package] |
2 | name = "wasm-bindgen-macro-support" |
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-support" |
7 | homepage = "https://rustwasm.github.io/wasm-bindgen/" |
8 | documentation = "https://docs.rs/wasm-bindgen" |
9 | description = "" " |
10 | The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate |
11 | " "" |
12 | edition = '2018' |
13 | rust-version = "1.57" |
14 | |
15 | [features] |
16 | spans = ["wasm-bindgen-backend/spans" ] |
17 | extra-traits = ["syn/extra-traits" ] |
18 | strict-macro = [] |
19 | |
20 | [dependencies] |
21 | syn = { version = '2.0' , features = ['visit' , 'full' ] } |
22 | quote = '1.0' |
23 | proc-macro2 = "1.0" |
24 | wasm-bindgen-backend = { path = "../backend" , version = "=0.2.92" } |
25 | wasm-bindgen-shared = { path = "../shared" , version = "=0.2.92" } |
26 | |