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