2018-03-29 09:14:32 -07:00
|
|
|
[package]
|
|
|
|
name = "wasm-bindgen-backend"
|
2019-08-19 04:21:27 -07:00
|
|
|
version = "0.2.50"
|
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
|
|
|
|
"""
|
2019-03-26 08:00:16 -07:00
|
|
|
edition = "2018"
|
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]
|
2019-03-05 12:27:39 -08:00
|
|
|
bumpalo = "2.1"
|
2018-07-30 10:50:43 -07:00
|
|
|
lazy_static = "1.0.0"
|
2018-07-18 17:59:24 -05:00
|
|
|
log = "0.4"
|
2019-08-13 10:05:08 -07:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = '1.0'
|
|
|
|
syn = { version = '1.0', features = ['full'] }
|
2019-08-19 04:21:27 -07:00
|
|
|
wasm-bindgen-shared = { path = "../shared", version = "=0.2.50" }
|