mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-23 21:50:51 +00:00
This commit starts to add support for in-browser testing with `wasm-bindgen-test-runner`. The current idea here is that somehow it'll be configured and it'll spawn a little HTTP server serving up files from the filesystem. This has been tested in various ways but isn't hooked up just yet, wanted to make sure this was somewhat standalone! Future support for actually running these tests will be coming in later commits.
24 lines
805 B
TOML
24 lines
805 B
TOML
[package]
|
|
name = "wasm-bindgen-cli"
|
|
version = "0.2.15"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli"
|
|
homepage = "https://rustwasm.github.io/wasm-bindgen/"
|
|
documentation = "https://rustwasm.github.io/wasm-bindgen/"
|
|
categories = ["wasm"]
|
|
description = """
|
|
Command line interface of the `#[wasm_bindgen]` attribute and project. For more
|
|
information see https://github.com/alexcrichton/wasm-bindgen.
|
|
"""
|
|
|
|
[dependencies]
|
|
docopt = "1.0"
|
|
failure = "0.1"
|
|
parity-wasm = "0.31"
|
|
rouille = { version = "2.1.0", default-features = false }
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.15" }
|
|
wasm-bindgen-shared = { path = "../shared", version = "=0.2.15" }
|