2017-12-14 19:31:01 -08:00
|
|
|
[package]
|
|
|
|
name = "wasm-bindgen-macro"
|
2019-03-13 11:02:27 -07:00
|
|
|
version = "0.2.39"
|
2018-07-19 14:57:04 -05:00
|
|
|
authors = ["The wasm-bindgen Developers"]
|
2018-03-05 20:24:35 -08:00
|
|
|
license = "MIT/Apache-2.0"
|
2018-07-19 14:57:04 -05:00
|
|
|
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro"
|
|
|
|
homepage = "https://rustwasm.github.io/wasm-bindgen/"
|
2018-03-05 20:24:35 -08:00
|
|
|
documentation = "https://docs.rs/wasm-bindgen"
|
|
|
|
description = """
|
|
|
|
Definition of the `#[wasm_bindgen]` attribute, an internal dependency
|
|
|
|
"""
|
2017-12-14 19:31:01 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2018-04-25 14:42:13 -05:00
|
|
|
[features]
|
2018-08-01 17:15:27 -05:00
|
|
|
spans = ["wasm-bindgen-macro-support/spans"]
|
2018-05-25 16:17:54 -07:00
|
|
|
xxx_debug_only_print_generated_code = []
|
2018-11-27 15:14:59 -08:00
|
|
|
strict-macro = ["wasm-bindgen-macro-support/strict-macro"]
|
2018-04-25 14:42:13 -05:00
|
|
|
|
2017-12-14 19:31:01 -08:00
|
|
|
[dependencies]
|
2019-03-13 11:02:27 -07:00
|
|
|
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.39" }
|
2018-08-01 17:15:27 -05:00
|
|
|
quote = "0.6"
|