From 90cb3a7babc7dc7df5851148a405f313705830a4 Mon Sep 17 00:00:00 2001 From: Elliot Levin Date: Tue, 15 Aug 2023 13:34:00 +1000 Subject: [PATCH] enable sync feature --- tunshell-server/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tunshell-server/Cargo.toml b/tunshell-server/Cargo.toml index b27c9bf..7d69565 100644 --- a/tunshell-server/Cargo.toml +++ b/tunshell-server/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] tunshell-shared = { path = "../tunshell-shared" } -tokio = { version = "0.2.21", features=["rt-threaded", "blocking", "time", "io-util", "tcp", "udp", "macros"] } +tokio = { version = "0.2.21", features=["rt-threaded", "blocking", "time", "io-util", "tcp", "udp", "macros", "sync"] } tokio-util = { version = "0.3.1", features=["compat"] } tokio-rustls = { version = "0.14.0", features=["dangerous_configuration"] } futures = "0.3.5"