wasm-bindgen/Cargo.toml

49 lines
1.0 KiB
TOML
Raw Normal View History

2017-12-15 06:31:01 +03:00
[package]
name = "wasm-bindgen"
2018-04-27 05:14:09 +03:00
version = "0.2.6"
2017-12-15 06:31:01 +03:00
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
[features]
default = ["spans", "std"]
spans = ["wasm-bindgen-macro/spans"]
std = []
2017-12-15 06:31:01 +03:00
[dependencies]
2018-04-27 05:14:09 +03:00
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.6" }
2017-12-15 06:31:01 +03:00
[dev-dependencies]
2018-04-27 05:14:09 +03:00
wasm-bindgen-cli-support = { path = "crates/cli-support", version = '=0.2.6' }
2017-12-19 01:31:01 +03:00
[workspace]
members = [
"crates/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",
"examples/closures",
"examples/no_modules",
"examples/add",
]
[profile.release]
lto = true
opt-level = 's'
panic = 'abort'