wasm-bindgen/Cargo.toml

39 lines
861 B
TOML
Raw Normal View History

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
[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]
members = [
"crates/wasm-bindgen-cli",
"examples/hello_world",
2018-03-03 07:19:39 +03:00
"examples/smorgasboard",
"examples/console_log",
2018-03-21 18:26:00 +03:00
"examples/dom",
2018-03-21 20:03:40 +03:00
"examples/math",
"examples/performance",
"examples/wasm-in-wasm",
]
[profile.release]
lto = true