From 2abe08bf57251848d0089cf6fa2b1f5680b3f378 Mon Sep 17 00:00:00 2001 From: Serkyo Date: Sun, 26 Jul 2026 20:14:11 +0200 Subject: [PATCH] chore(client): add crossbeam-channel dependency --- Cargo.lock | 1 + crates/client/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index ac4e2a2..6c92e96 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -547,6 +547,7 @@ version = "0.1.0" dependencies = [ "anyhow", "ash-window", + "crossbeam-channel", "glam 0.33.2", "net", "raw-window-handle", diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index 18f6000..5f1330a 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -19,3 +19,4 @@ raw-window-handle.workspace = true ash-window.workspace = true shared = { path = "../shared" } net = { version = "0.1.0", path = "../net" } +crossbeam-channel = "0.5.16"