2017-12-14 19:31:01 -08:00
|
|
|
[package]
|
|
|
|
name = "wasm-bindgen"
|
2018-04-13 07:50:24 -07:00
|
|
|
version = "0.2.2"
|
2017-12-14 19:31:01 -08:00
|
|
|
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-04-13 07:50:24 -07:00
|
|
|
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.2" }
|
2017-12-14 19:31:01 -08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-04-13 07:50:24 -07:00
|
|
|
wasm-bindgen-cli-support = { path = "crates/cli-support", version = '=0.2.2' }
|
2017-12-18 14:31:01 -08:00
|
|
|
|
|
|
|
[workspace]
|
2018-03-02 20:11:30 -08:00
|
|
|
members = [
|
2018-03-29 08:15:58 -07:00
|
|
|
"crates/cli",
|
2018-03-02 20:11:30 -08:00
|
|
|
"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-04-06 08:49:21 -07:00
|
|
|
"examples/closures",
|
2018-03-02 20:11:30 -08:00
|
|
|
]
|
2018-03-20 15:27:45 -07:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2018-04-09 16:36:23 -07:00
|
|
|
opt-level = 's'
|
2018-04-06 08:05:47 -07:00
|
|
|
panic = 'abort'
|
2018-04-17 11:42:10 -07:00
|
|
|
|
|
|
|
[patch.crates-io]
|
2018-04-17 11:51:55 -07:00
|
|
|
parity-wasm = { git = 'https://github.com/paritytech/parity-wasm' }
|