2017-12-15 06:31:01 +03:00
|
|
|
[package]
|
|
|
|
name = "wasm-bindgen-macro"
|
2018-03-07 00:50:45 +03:00
|
|
|
version = "0.1.1"
|
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
|
|
|
|
|
|
|
|
[dependencies]
|
2018-01-08 21:42:01 +03:00
|
|
|
syn = { version = '0.12', features = ['full'] }
|
|
|
|
quote = '0.4'
|
|
|
|
proc-macro2 = { version = "0.2", features = ["nightly"] }
|
2017-12-15 06:31:01 +03:00
|
|
|
serde_json = "1"
|
2018-03-29 18:15:58 +03:00
|
|
|
wasm-bindgen-shared = { path = "../shared", version = "0.1.0" }
|
2018-03-29 19:14:32 +03:00
|
|
|
wasm-bindgen-backend = { path = "../backend", version = "0.1.0" }
|