wasm-bindgen/Cargo.toml
Alex Crichton 7e16690f10
Migrate webidl tests to wasm_bindgen_test (#590)
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!
2018-07-30 11:06:29 -07:00

65 lines
1.6 KiB
TOML

[package]
name = "wasm-bindgen"
version = "0.2.15"
authors = ["The wasm-bindgen Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
categories = ["wasm"]
repository = "https://github.com/rustwasm/wasm-bindgen"
homepage = "https://rustwasm.github.io/wasm-bindgen/"
documentation = "https://docs.rs/wasm-bindgen"
description = """
Easy support for interacting between JS and Rust.
"""
[lib]
test = false
doctest = false
[features]
default = ["spans", "std"]
spans = ["wasm-bindgen-macro/spans"]
std = []
serde-serialize = ["serde", "serde_json", "std"]
# This is only for debugging wasm-bindgen! No stability guarantees, so enable
# this at your own peril!
xxx_debug_only_print_generated_code = ["wasm-bindgen-macro/xxx_debug_only_print_generated_code"]
[dependencies]
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.15" }
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
wasm-bindgen-test-project-builder = { path = "crates/test-project-builder", version = '=0.2.15' }
[workspace]
members = [
"crates/cli",
"crates/js-sys",
"crates/test",
"crates/typescript",
"crates/web-sys",
"crates/webidl",
"crates/webidl-tests",
"examples/add",
"examples/asm.js",
"examples/char",
"examples/closures",
"examples/comments",
"examples/console_log",
"examples/dom",
"examples/hello_world",
"examples/import_js",
"examples/julia_set",
"examples/math",
"examples/no_modules",
"examples/performance",
"examples/smorgasboard",
"examples/wasm-in-wasm",
]
[patch.crates-io]
wasm-bindgen = { path = '.' }