Fix(tokio-postgres): declare dependency on net feature

This commit is contained in:
Basti Ortiz 2022-08-15 00:01:12 +08:00
parent 8abc3eaa65
commit a0f028a008
No known key found for this signature in database
GPG Key ID: 1402D5CB17F48E1B

View File

@ -62,7 +62,7 @@ tokio-util = { version = "0.7", features = ["codec"] }
futures-executor = "0.3"
criterion = "0.3"
env_logger = "0.9"
tokio = { version = "1.0", features = ["macros", "rt"] }
tokio = { version = "1.0", features = ["macros", "net", "rt", "rt-multi-thread", "time"] }
bit-vec-06 = { version = "0.6", package = "bit-vec" }
chrono-04 = { version = "0.4", package = "chrono", default-features = false }