2018-03-29 09:14:32 -07:00
|
|
|
[package]
|
|
|
|
name = "wasm-bindgen-backend"
|
2019-01-18 15:30:31 -08:00
|
|
|
version = "0.2.33"
|
2018-07-19 14:57:04 -05:00
|
|
|
authors = ["The wasm-bindgen Developers"]
|
2018-04-03 14:02:04 -07:00
|
|
|
license = "MIT/Apache-2.0"
|
2018-07-19 14:57:04 -05:00
|
|
|
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"
|
|
|
|
homepage = "https://rustwasm.github.io/wasm-bindgen/"
|
2018-04-03 14:02:04 -07:00
|
|
|
documentation = "https://docs.rs/wasm-bindgen-backend"
|
|
|
|
description = """
|
|
|
|
Backend code generation of the wasm-bindgen tool
|
|
|
|
"""
|
2018-03-29 09:14:32 -07:00
|
|
|
|
2018-04-25 14:42:13 -05:00
|
|
|
[features]
|
2018-08-28 17:24:43 -07:00
|
|
|
spans = []
|
2018-05-29 11:24:40 -07:00
|
|
|
extra-traits = ["syn/extra-traits"]
|
2018-04-25 14:42:13 -05:00
|
|
|
|
2018-03-29 09:14:32 -07:00
|
|
|
[dependencies]
|
2018-07-30 10:50:43 -07:00
|
|
|
lazy_static = "1.0.0"
|
2018-07-18 17:59:24 -05:00
|
|
|
log = "0.4"
|
2018-07-17 09:11:30 -05:00
|
|
|
proc-macro2 = "0.4.8"
|
2018-07-18 17:59:24 -05:00
|
|
|
quote = '0.6'
|
2018-08-26 15:43:33 -07:00
|
|
|
syn = { version = '0.15', features = ['full'] }
|
2019-01-18 15:30:31 -08:00
|
|
|
wasm-bindgen-shared = { path = "../shared", version = "=0.2.33" }
|