limit the number of features for tokio (#53)
This commit is contained in:
parent
785dc88b8f
commit
36393676e7
1 changed files with 5 additions and 3 deletions
|
@ -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"] }
|
Loading…
Reference in a new issue