1[package]
2name = "wasm-bindgen-backend"
3version = "0.2.92"
4authors = ["The wasm-bindgen Developers"]
5license = "MIT OR Apache-2.0"
6repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"
7homepage = "https://rustwasm.github.io/wasm-bindgen/"
8documentation = "https://docs.rs/wasm-bindgen-backend"
9description = """
10Backend code generation of the wasm-bindgen tool
11"""
12edition = "2018"
13rust-version = "1.57"
14
15[features]
16spans = []
17extra-traits = ["syn/extra-traits"]
18
19[dependencies]
20bumpalo = "3.0.0"
21log = "0.4"
22once_cell = "1.12"
23proc-macro2 = "1.0"
24quote = '1.0'
25syn = { version = '2.0', features = ['full'] }
26wasm-bindgen-shared = { path = "../shared", version = "=0.2.92" }
27