wasm-bindgen/Cargo.toml
2018-03-05 20:24:35 -08:00

31 lines
715 B
TOML

[package]
name = "wasm-bindgen"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
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.
"""
[lib]
test = false
doctest = false
[dependencies]
wasm-bindgen-macro = { path = "crates/wasm-bindgen-macro", version = "0.1" }
[dev-dependencies]
test-support = { path = "crates/test-support" }
[workspace]
members = [
"crates/wasm-bindgen-cli",
"examples/hello_world",
"examples/smorgasboard",
]