2017-12-15 06:31:01 +03:00
|
|
|
[package]
|
|
|
|
name = "wasm-bindgen-macro"
|
2019-04-29 18:20:57 +03:00
|
|
|
version = "0.2.43"
|
2018-07-19 22:57:04 +03:00
|
|
|
authors = ["The wasm-bindgen Developers"]
|
2018-03-06 07:24:35 +03:00
|
|
|
license = "MIT/Apache-2.0"
|
2018-07-19 22:57:04 +03:00
|
|
|
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro"
|
|
|
|
homepage = "https://rustwasm.github.io/wasm-bindgen/"
|
2018-03-06 07:24:35 +03:00
|
|
|
documentation = "https://docs.rs/wasm-bindgen"
|
|
|
|
description = """
|
|
|
|
Definition of the `#[wasm_bindgen]` attribute, an internal dependency
|
|
|
|
"""
|
2019-03-26 18:00:16 +03:00
|
|
|
edition = "2018"
|
2017-12-15 06:31:01 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2018-04-25 22:42:13 +03:00
|
|
|
[features]
|
2018-08-02 01:15:27 +03:00
|
|
|
spans = ["wasm-bindgen-macro-support/spans"]
|
2018-05-26 02:17:54 +03:00
|
|
|
xxx_debug_only_print_generated_code = []
|
2018-11-28 02:14:59 +03:00
|
|
|
strict-macro = ["wasm-bindgen-macro-support/strict-macro"]
|
2018-04-25 22:42:13 +03:00
|
|
|
|
2017-12-15 06:31:01 +03:00
|
|
|
[dependencies]
|
2019-04-29 18:20:57 +03:00
|
|
|
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.43" }
|
2018-08-02 01:15:27 +03:00
|
|
|
quote = "0.6"
|
2019-05-16 00:46:03 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
trybuild = "1.0"
|
|
|
|
wasm-bindgen = { path = "../..", version = "0.2.43", features = ['strict-macro'] }
|