From b12060bb7fecdca5255d964e0d6725a7ae1e0bfe Mon Sep 17 00:00:00 2001 From: Mingwei Samuel Date: Sat, 17 Feb 2024 20:16:59 -0800 Subject: [PATCH] fix: add missing tokio `sync` feature --- riven/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riven/Cargo.toml b/riven/Cargo.toml index 917195c..c105be8 100644 --- a/riven/Cargo.toml +++ b/riven/Cargo.toml @@ -50,7 +50,7 @@ serde_json = "1.0" serde_repr = "0.1" strum = "0.20" strum_macros = "0.20" -tokio = { version = "1", default-features = false, features = [ "time", "macros", "parking_lot" ] } +tokio = { version = "1", default-features = false, features = [ "macros", "parking_lot", "sync", "time" ] } tracing = { version = "0.1", optional = true } [dev-dependencies]