fix: add missing tokio `sync` feature

pull/63/head
Mingwei Samuel 2024-02-17 20:16:59 -08:00
parent 6b45c1eabd
commit b12060bb7f
1 changed files with 1 additions and 1 deletions

View File

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