fix(network): add missing feature gate flag to tokio dependency (#333)

This commit is contained in:
Alexsander Falcucci 2023-11-16 13:58:05 +01:00 committed by GitHub
parent 317e23fb45
commit 6963dd9698
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ itertools = "0.10.5"
pallas-codec = { version = "=0.19.1", path = "../pallas-codec" } pallas-codec = { version = "=0.19.1", path = "../pallas-codec" }
pallas-crypto = { version = "=0.19.1", path = "../pallas-crypto" } pallas-crypto = { version = "=0.19.1", path = "../pallas-crypto" }
thiserror = "1.0.31" thiserror = "1.0.31"
tokio = { version = "1", features = ["net", "io-util", "time", "sync"] } tokio = { version = "1", features = ["net", "io-util", "time", "sync", "macros"] }
tracing = "0.1.37" tracing = "0.1.37"
[dev-dependencies] [dev-dependencies]