mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-16 02:00:51 +00:00
Right now Webpack probably has the most mature support for loading wasm modules, so let's show off how to do that! Additionally this commits hello world as an example to the repository.
21 lines
364 B
TOML
21 lines
364 B
TOML
[package]
|
|
name = "wasm-bindgen"
|
|
version = "0.1.0"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
|
|
[lib]
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
wasm-bindgen-macro = { path = "crates/wasm-bindgen-macro" }
|
|
|
|
[dev-dependencies]
|
|
test-support = { path = "crates/test-support" }
|
|
|
|
[workspace]
|
|
members = [
|
|
"crates/wasm-bindgen-cli",
|
|
"examples/hello_world",
|
|
]
|