limit the number of features for tokio (#53)

This commit is contained in:
Ayrat Badykov 2022-08-01 19:57:17 +03:00 committed by GitHub
parent 785dc88b8f
commit 36393676e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,7 +53,7 @@ optional = true
[dependencies.tokio]
version = "1.20"
features = ["full"]
features = ["rt", "time"]
optional = true
[dependencies.async-trait]
@ -64,7 +64,9 @@ optional = true
version = "0.10"
optional = true
[dependencies.async-recursion]
version = "1"
optional = true
optional = true
[dev-dependencies]
tokio = { version = "1.20", features = ["macros"] }