Skip to content

Commit

Permalink
Add missing rt feature (#369)
Browse files Browse the repository at this point in the history
* Add missing `rt` feature

* Use rt-multi-thread actually

* More feature flag foo
  • Loading branch information
dvdplm authored Jun 4, 2021
1 parent b3a0748 commit 3f804de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ws-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ documentation = "https://docs.rs/jsonrpsee-ws-client"

[dependencies]
# Tokio v1 deps
tokioV1 = { package="tokio", version = "1", features = ["net", "time"], optional=true }
tokioV1 = { package="tokio", version = "1", features = ["net", "time", "rt-multi-thread"], optional=true }
tokioV1-rustls = { package="tokio-rustls", version = "0.22", optional=true }
tokioV1-util = { package="tokio-util", version = "0.6", features = ["compat"], optional=true }

# Tokio v0.2 deps
tokioV02 = { package="tokio", version = "0.2", features = ["net", "time"], optional=true }
tokioV02 = { package="tokio", version = "0.2", features = ["net", "time", "rt-threaded", "sync"], optional=true }
tokioV02-rustls = { package="tokio-rustls", version = "0.15", optional=true }
tokioV02-util = { package="tokio-util", version = "0.3", features = ["compat"], optional=true }

Expand Down

0 comments on commit 3f804de

Please sign in to comment.