wasm-bindgen/Cargo.toml
Alex Crichton 4716752991 Add an example of namespaced APIs
By creating wasm modules from Rust!
2018-03-22 17:39:48 -07:00

39 lines
861 B
TOML

[package]
name = "wasm-bindgen"
version = "0.1.0"
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
[dependencies]
wasm-bindgen-macro = { path = "crates/wasm-bindgen-macro", version = "0.1" }
[dev-dependencies]
test-support = { path = "crates/test-support" }
[workspace]
members = [
"crates/wasm-bindgen-cli",
"examples/hello_world",
"examples/smorgasboard",
"examples/console_log",
"examples/dom",
"examples/math",
"examples/performance",
"examples/wasm-in-wasm",
]
[profile.release]
lto = true