2017-12-14 19:31:01 -08:00
|
|
|
[package]
|
|
|
|
name = "wasm-bindgen-macro"
|
2018-07-25 09:46:45 -07:00
|
|
|
version = "0.2.14"
|
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-05-24 07:16:36 -07:00
|
|
|
spans = ["proc-macro2/nightly", "wasm-bindgen-backend/spans"]
|
2018-05-25 16:17:54 -07:00
|
|
|
xxx_debug_only_print_generated_code = []
|
2018-04-25 14:42:13 -05:00
|
|
|
|
2017-12-14 19:31:01 -08:00
|
|
|
[dependencies]
|
2018-05-21 07:29:34 -07:00
|
|
|
syn = { version = '0.14', features = ['full'] }
|
|
|
|
quote = '0.6'
|
2018-07-21 20:07:55 -07:00
|
|
|
proc-macro2 = "0.4.9"
|
2018-07-25 09:46:45 -07:00
|
|
|
wasm-bindgen-backend = { path = "../backend", version = "=0.2.14" }
|
|
|
|
wasm-bindgen-shared = { path = "../shared", version = "=0.2.14" }
|