fix: add missing tokio sync feature

This commit is contained in:
Mingwei Samuel 2024-02-17 20:16:59 -08:00
parent 6b45c1eabd
commit b12060bb7f

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]