mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-27 03:55:20 +03:00
d8e5930799
Also clean up some other exampels
32 lines
741 B
TOML
32 lines
741 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",
|
|
"examples/console_log",
|
|
]
|