mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-30 22:25:35 +03:00
0fb31b2bc4
This is no longer needed as of rustc 1.30.0 and the `proc-macro2` crate will now automatically detect whether it can use spans or not!
25 lines
678 B
TOML
25 lines
678 B
TOML
[package]
|
|
name = "wasm-bindgen-backend"
|
|
version = "0.2.19"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"
|
|
homepage = "https://rustwasm.github.io/wasm-bindgen/"
|
|
documentation = "https://docs.rs/wasm-bindgen-backend"
|
|
description = """
|
|
Backend code generation of the wasm-bindgen tool
|
|
"""
|
|
|
|
[features]
|
|
spans = []
|
|
extra-traits = ["syn/extra-traits"]
|
|
|
|
[dependencies]
|
|
lazy_static = "1.0.0"
|
|
log = "0.4"
|
|
proc-macro2 = "0.4.8"
|
|
quote = '0.6'
|
|
serde_json = "1.0"
|
|
syn = { version = '0.14', features = ['full', 'visit'] }
|
|
wasm-bindgen-shared = { path = "../shared", version = "=0.2.19" }
|