mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-11 11:15:33 +03:00
23 lines
700 B
TOML
23 lines
700 B
TOML
[package]
|
|
name = "wasm-bindgen-macro"
|
|
version = "0.2.0"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
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
|
|
"""
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = '0.13', features = ['full'] }
|
|
quote = '0.5'
|
|
proc-macro2 = { version = "0.3", features = ["nightly"] }
|
|
serde_json = "1"
|
|
wasm-bindgen-shared = { path = "../shared", version = "0.2.0" }
|
|
wasm-bindgen-backend = { path = "../backend", version = "0.2.0" }
|