wasm-bindgen/examples/hello_world/Cargo.toml

15 lines
375 B
TOML
Raw Normal View History

[package]
name = "hello_world"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
[lib]
crate-type = ["cdylib"]
[dependencies]
# Here we're using a path dependency to use what's already in this repository,
# but you'd use the commented out version below if you're copying this into your
# project.
wasm-bindgen = { path = "../.." }
2018-04-03 17:10:07 +03:00
#wasm-bindgen = "0.2"