diff --git a/client/Cargo.toml b/client/Cargo.toml index d6b511f..241420e 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -6,7 +6,7 @@ edition = "2024" [dependencies] tokio = { version = "1.45", features = ["full"] } tonic = "0.11" -tokio-stream = "0.1" +tokio-stream = { version = "0.1", features = ["sync"] } anyhow = "1.0" navka-common = { path = "../common" } diff --git a/server/Cargo.toml b/server/Cargo.toml index b65fbff..3fc0267 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "navka-server" version = "0.1.0" -edition = "2021" +edition = "2024" [dependencies] -tokio = { version = "1.45", features = ["full", "fs"] } # add "fs" +tokio = { version = "1.45", features = ["full"] } tokio-stream = "0.1" tonic = { version = "0.11", features = ["transport"] } anyhow = "1.0"