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