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