diff options
Diffstat (limited to 'users/kranzes/wasm-hello-world/Cargo.toml')
-rw-r--r-- | users/kranzes/wasm-hello-world/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/users/kranzes/wasm-hello-world/Cargo.toml b/users/kranzes/wasm-hello-world/Cargo.toml new file mode 100644 index 000000000000..e08caa7ecf24 --- /dev/null +++ b/users/kranzes/wasm-hello-world/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "wasm_hello_world" +version = "0.1.0" +edition = "2021" + +[lib] +crate-type = ["cdylib"] + +[dependencies] +wasm-bindgen = "0.2.92" |