wasm-bindgen/Cargo.toml

42 lines
924 B
TOML
Raw Normal View History

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
[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]
members = [
"crates/cli",
"examples/hello_world",
2018-03-02 20:19:39 -08:00
"examples/smorgasboard",
"examples/console_log",
2018-03-21 08:26:00 -07:00
"examples/dom",
2018-03-21 10:03:40 -07:00
"examples/math",
"examples/performance",
"examples/wasm-in-wasm",
"examples/closures",
]
[profile.release]
lto = true
opt-level = 's'
panic = 'abort'