From 1c37b72b5594623ba661da70c24ce3221c53a3b5 Mon Sep 17 00:00:00 2001 From: clfreville2 Date: Sat, 25 Feb 2023 14:27:00 +0100 Subject: [PATCH] Add missing dependencies --- board-frontend/Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/board-frontend/Cargo.toml b/board-frontend/Cargo.toml index 5b96cf5..edca37f 100644 --- a/board-frontend/Cargo.toml +++ b/board-frontend/Cargo.toml @@ -10,5 +10,11 @@ categories = ["gui", "wasm", "web-programming"] [dependencies] yew = { version="0.20", features=["csr"] } board-shared = { path = "../board-shared" } +board-network = { path = "../board-network" } gloo-dialogs = "0.1.1" getrandom = { version = "0.2.8", features = ["js"] } +gloo-net = "0.2.6" +futures = "0.3.26" +serde_json = "1.0.93" +gloo-utils = "0.1.6" +web-sys = "0.3.61"