From 31f2f52d940ae20144094c598e6c99a062d4d4cf Mon Sep 17 00:00:00 2001 From: Gabi Date: Wed, 24 Jan 2024 22:18:28 -0300 Subject: [PATCH] fix(gateway): tokio feature dependencies (#3396) I don't know how this didn't fail in CI before --- rust/gateway/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/gateway/Cargo.toml b/rust/gateway/Cargo.toml index fdd9cd4ce..70215e4f9 100644 --- a/rust/gateway/Cargo.toml +++ b/rust/gateway/Cargo.toml @@ -21,7 +21,7 @@ firezone-cli-utils = { workspace = true } phoenix-channel = { workspace = true } secrecy = { workspace = true } serde = { version = "1.0", default-features = false, features = ["std", "derive"] } -tokio = { version = "1.33", default-features = false, features = ["sync", "macros", "rt-multi-thread"] } +tokio = { version = "1.33", default-features = false, features = ["sync", "macros", "rt-multi-thread", "fs", "signal"] } tokio-tungstenite = { version = "0.21", default-features = false, features = ["connect", "handshake", "rustls-tls-webpki-roots"] } tracing = { workspace = true } tracing-subscriber = "0.3.17"