mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-20 04:00:52 +00:00
This commit moves the `webidl/tests` folder to a new `crates/webidl-tests` crate (to have a test-only build script) and ports them to the `#[wasm_bindgen_test]` attribute, which should hopefully make testing much speedier for execution!
24 lines
657 B
TOML
24 lines
657 B
TOML
[package]
|
|
name = "wasm-bindgen-webidl"
|
|
version = "0.2.15"
|
|
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
|
|
"""
|
|
|
|
[dependencies]
|
|
failure = "0.1"
|
|
failure_derive = "0.1"
|
|
heck = "0.3"
|
|
log = "0.4.1"
|
|
proc-macro2 = "0.4.8"
|
|
quote = '0.6'
|
|
syn = { version = '0.14', features = ['full'] }
|
|
wasm-bindgen-backend = { version = "=0.2.15", path = "../backend" }
|
|
webidl = "0.7.0"
|