fix(gateway): tokio feature dependencies (#3396)

I don't know how this didn't fail in CI before
This commit is contained in:
Gabi
2024-01-24 22:18:28 -03:00
committed by GitHub
parent de1276a963
commit 31f2f52d94

View File

@@ -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"