mirror of https://github.com/MingweiSamuel/Riven
fix: add missing tokio `sync` feature
parent
6b45c1eabd
commit
b12060bb7f
|
@ -50,7 +50,7 @@ serde_json = "1.0"
|
||||||
serde_repr = "0.1"
|
serde_repr = "0.1"
|
||||||
strum = "0.20"
|
strum = "0.20"
|
||||||
strum_macros = "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 }
|
tracing = { version = "0.1", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
Loading…
Reference in New Issue