1 | [package] |
2 | name = "wasm-bindgen-backend" |
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/backend" |
7 | homepage = "https://rustwasm.github.io/wasm-bindgen/" |
8 | documentation = "https://docs.rs/wasm-bindgen-backend" |
9 | description = "" " |
10 | Backend code generation of the wasm-bindgen tool |
11 | " "" |
12 | edition = "2018" |
13 | rust-version = "1.57" |
14 | |
15 | [features] |
16 | spans = [] |
17 | extra-traits = ["syn/extra-traits" ] |
18 | |
19 | [dependencies] |
20 | bumpalo = "3.0.0" |
21 | log = "0.4" |
22 | once_cell = "1.12" |
23 | proc-macro2 = "1.0" |
24 | quote = '1.0' |
25 | syn = { version = '2.0' , features = ['full' ] } |
26 | wasm-bindgen-shared = { path = "../shared" , version = "=0.2.92" } |
27 | |