2017-12-15 06:31:01 +03:00
|
|
|
[package]
|
|
|
|
name = "wasm-bindgen-macro"
|
2018-05-17 20:40:24 +03:00
|
|
|
version = "0.2.10"
|
2017-12-15 06:31:01 +03:00
|
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
2018-03-06 07:24:35 +03:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
repository = "https://github.com/alexcrichton/wasm-bindgen"
|
|
|
|
homepage = "https://github.com/alexcrichton/wasm-bindgen"
|
|
|
|
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-05-24 17:16:36 +03:00
|
|
|
spans = ["proc-macro2/nightly", "wasm-bindgen-backend/spans"]
|
2018-04-25 22:42:13 +03:00
|
|
|
|
2017-12-15 06:31:01 +03:00
|
|
|
[dependencies]
|
2018-05-21 17:29:34 +03:00
|
|
|
syn = { version = '0.14', features = ['full'] }
|
|
|
|
quote = '0.6'
|
|
|
|
proc-macro2 = "0.4"
|
2018-05-17 20:40:24 +03:00
|
|
|
wasm-bindgen-backend = { path = "../backend", version = "=0.2.10" }
|