From 69126c4270398ee7304ea881c97fb90ff6215aa3 Mon Sep 17 00:00:00 2001 From: Kevin Wang Date: Mon, 31 Oct 2022 20:17:43 -0400 Subject: [PATCH] fix: add `wasm-bindgen = "0.2"` This is a missing piece from the following tutorial: https://developers.cloudflare.com/workers/tutorials/hello-world-rust/#publish --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index dd0a304..de5574f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,7 @@ default = ["console_error_panic_hook"] cfg-if = "0.1.2" worker = "0.0.9" serde_json = "1.0.67" +wasm-bindgen = "0.2" # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires