Nick Fitzgerald 3879f6f427 Introduce the wasm-bindgen-webidl frontend
This is still a work in progress. Parse WebIDL source text and convert it into
wasm-bindgen AST, so that we can automatically emit bindings for the types and
functions described in the WebIDL.
2018-05-29 14:22:53 -07:00

19 lines
465 B
TOML

[package]
name = "wasm-bindgen-webidl"
version = "0.1.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
[[test]]
name = "webidl-all"
path = "tests/all/lib.rs"
[dev-dependencies]
wasm-bindgen-backend = { version = "=0.2.11", path = "../backend", features = ["extra-traits"] }
[dependencies]
failure = "0.1"
proc-macro2 = "0.4"
syn = { version = '0.14', features = ['full'] }
wasm-bindgen-backend = { version = "=0.2.11", path = "../backend" }
webidl = "0.6.0"