24 lines
712 B
TOML
Raw Normal View History

2017-12-14 19:31:01 -08:00
[package]
name = "wasm-bindgen-macro"
2018-07-26 14:51:20 -07:00
version = "0.2.15"
authors = ["The wasm-bindgen Developers"]
2018-03-05 20:24:35 -08:00
license = "MIT/Apache-2.0"
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
[features]
spans = ["proc-macro2/nightly", "wasm-bindgen-macro-support/spans"]
xxx_debug_only_print_generated_code = []
2017-12-14 19:31:01 -08:00
[dependencies]
syn = { version = '0.14', features = ['full'] }
2018-07-21 20:07:55 -07:00
proc-macro2 = "0.4.9"
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.15" }