2017-12-14 19:31:01 -08:00
|
|
|
[package]
|
|
|
|
name = "wasm-bindgen"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
2018-03-05 20:24:35 -08:00
|
|
|
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.
|
|
|
|
"""
|
2017-12-14 19:31:01 -08:00
|
|
|
|
2018-02-02 08:10:48 -08:00
|
|
|
[lib]
|
|
|
|
test = false
|
|
|
|
doctest = false
|
|
|
|
|
2017-12-14 19:31:01 -08:00
|
|
|
[dependencies]
|
2018-03-05 20:24:35 -08:00
|
|
|
wasm-bindgen-macro = { path = "crates/wasm-bindgen-macro", version = "0.1" }
|
2017-12-14 19:31:01 -08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
test-support = { path = "crates/test-support" }
|
2017-12-18 14:31:01 -08:00
|
|
|
|
|
|
|
[workspace]
|
2018-03-02 20:11:30 -08:00
|
|
|
members = [
|
|
|
|
"crates/wasm-bindgen-cli",
|
|
|
|
"examples/hello_world",
|
2018-03-02 20:19:39 -08:00
|
|
|
"examples/smorgasboard",
|
2018-03-09 10:25:19 -08:00
|
|
|
"examples/console_log",
|
2018-03-21 08:26:00 -07:00
|
|
|
"examples/dom",
|
2018-03-21 10:03:40 -07:00
|
|
|
"examples/math",
|
2018-03-21 10:21:21 -07:00
|
|
|
"examples/performance",
|
2018-03-22 17:39:48 -07:00
|
|
|
"examples/wasm-in-wasm",
|
2018-03-02 20:11:30 -08:00
|
|
|
]
|
2018-03-20 15:27:45 -07:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|