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"