1 | [package] |
2 | authors = ["The wasm-bindgen Developers" ] |
3 | description = "" " |
4 | The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate |
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-support" |
12 | repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support" |
13 | rust-version = "1.57" |
14 | version = "0.2.100" |
15 | |
16 | [features] |
17 | extra-traits = ["syn/extra-traits" ] |
18 | strict-macro = [] |
19 | |
20 | [dependencies] |
21 | proc-macro2 = "1.0" |
22 | quote = '1.0' |
23 | syn = { version = '2.0' , features = ['visit' , 'visit-mut' , 'full' ] } |
24 | wasm-bindgen-backend = { path = "../backend" , version = "=0.2.100" } |
25 | wasm-bindgen-shared = { path = "../shared" , version = "=0.2.100" } |
26 | |
27 | [lints] |
28 | workspace = true |
29 | |