1 | [package] |
2 | authors = ["The wasm-bindgen Developers" ] |
3 | description = "" " |
4 | Backend code generation of the wasm-bindgen tool |
5 | " "" |
6 | documentation = "https://docs.rs/wasm-bindgen-backend" |
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-backend" |
12 | repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend" |
13 | rust-version = "1.57" |
14 | version = "0.2.100" |
15 | |
16 | [features] |
17 | extra-traits = ["syn/extra-traits" ] |
18 | |
19 | [dependencies] |
20 | bumpalo = "3.0.0" |
21 | log = "0.4" |
22 | proc-macro2 = "1.0" |
23 | quote = '1.0' |
24 | syn = { version = '2.0' , features = ['full' ] } |
25 | wasm-bindgen-shared = { path = "../shared" , version = "=0.2.100" } |
26 | |
27 | [lints] |
28 | workspace = true |
29 | |