2018-05-26 03:51:48 +03:00
|
|
|
[package]
|
|
|
|
name = "wasm-bindgen-webidl"
|
2020-05-27 18:07:18 +03:00
|
|
|
version = "0.2.63"
|
2018-07-19 22:57:04 +03:00
|
|
|
authors = ["The wasm-bindgen Developers"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
categories = ["wasm"]
|
|
|
|
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/webidl"
|
|
|
|
homepage = "https://rustwasm.github.io/wasm-bindgen/"
|
|
|
|
documentation = "https://docs.rs/wasm-bindgen"
|
|
|
|
description = """
|
|
|
|
Support for parsing WebIDL specific to wasm-bindgen
|
|
|
|
"""
|
2019-03-26 18:00:16 +03:00
|
|
|
edition = "2018"
|
2018-05-26 03:51:48 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2020-03-03 02:39:36 +03:00
|
|
|
env_logger = "0.7.0"
|
2019-11-04 20:35:28 +03:00
|
|
|
anyhow = "1.0"
|
2018-06-10 07:49:42 +03:00
|
|
|
heck = "0.3"
|
2018-06-02 01:24:48 +03:00
|
|
|
log = "0.4.1"
|
2019-08-13 20:05:08 +03:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = '1.0'
|
|
|
|
syn = { version = '1.0', features = ['full'] }
|
2020-05-27 18:07:18 +03:00
|
|
|
wasm-bindgen-backend = { version = "=0.2.63", path = "../backend" }
|
2020-03-03 00:31:02 +03:00
|
|
|
weedle = "0.11"
|
2020-03-03 02:39:36 +03:00
|
|
|
lazy_static = "1.0.0"
|
|
|
|
sourcefile = "0.1"
|
|
|
|
structopt = "0.3.9"
|