1[package]
2authors = ["The wasm-bindgen Developers"]
3description = """
4The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate
5"""
6documentation = "https://docs.rs/wasm-bindgen"
7edition = "2021"
8homepage = "https://rustwasm.github.io/wasm-bindgen/"
9include = ["/LICENSE-*", "/src"]
10license = "MIT OR Apache-2.0"
11name = "wasm-bindgen-macro-support"
12repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support"
13rust-version = "1.57"
14version = "0.2.100"
15
16[features]
17extra-traits = ["syn/extra-traits"]
18strict-macro = []
19
20[dependencies]
21proc-macro2 = "1.0"
22quote = '1.0'
23syn = { version = '2.0', features = ['visit', 'visit-mut', 'full'] }
24wasm-bindgen-backend = { path = "../backend", version = "=0.2.100" }
25wasm-bindgen-shared = { path = "../shared", version = "=0.2.100" }
26
27[lints]
28workspace = true
29