From cb4eb8feaf2c5f369e638c427b028354ee509d98 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Sun, 1 Jun 2025 14:54:25 -0500 Subject: [PATCH] client: add anyhow + tokio-stream deps --- client/Cargo.toml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index e2f1a1e..07ea9ad 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -4,7 +4,11 @@ version = "0.1.0" edition = "2021" [dependencies] -tokio = { version = "1", features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.45", features = ["full"] } +tonic = "0.11" +tokio-stream = "0.1" +anyhow = "1.0" navka-common = { path = "../common" } -evdev = "0.12" -tonic = "0.11" + +[build-dependencies] +prost-build = "0.12"