wasm-bindgen/Cargo.toml

31 lines
715 B
TOML
Raw Normal View History

2017-12-14 19:31:01 -08:00
[package]
name = "wasm-bindgen"
version = "0.1.0"
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-03-05 20:24:35 -08:00
wasm-bindgen-macro = { path = "crates/wasm-bindgen-macro", version = "0.1" }
2017-12-14 19:31:01 -08:00
[dev-dependencies]
test-support = { path = "crates/test-support" }
2017-12-18 14:31:01 -08:00
[workspace]
members = [
"crates/wasm-bindgen-cli",
"examples/hello_world",
2018-03-02 20:19:39 -08:00
"examples/smorgasboard",
]