wasm-bindgen/Cargo.toml
Nick Fitzgerald 549e5a9be9 tests: Pull the project() builder out into its own crate
The WebIDL-based -sys crate will also use this, but I want its tests to be a
separate suite that we can run separately and in parallel in CI. Therefore, this
testing infrastructure code needs to be share-able between them :)
2018-07-05 14:27:26 -07:00

63 lines
1.5 KiB
TOML

[package]
name = "wasm-bindgen"
version = "0.2.11"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
categories = ["wasm"]
repository = "https://github.com/alexcrichton/wasm-bindgen"
homepage = "https://github.com/alexcrichton/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", "js_globals"]
js_globals = []
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.11" }
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.11' }
[workspace]
members = [
"crates/cli",
"crates/typescript",
"crates/webidl",
"examples/hello_world",
"examples/smorgasboard",
"examples/console_log",
"examples/dom",
"examples/math",
"examples/performance",
"examples/wasm-in-wasm",
"examples/closures",
"examples/no_modules",
"examples/add",
"examples/asm.js",
"examples/char",
"examples/import_js",
"examples/comments"
]
[profile.release]
lto = true
opt-level = 's'
panic = 'abort'