mirror of
https://github.com/OMGeeky/tarpc.git
synced 2026-02-23 15:49:54 +01:00
Reduce required tokio features (#343)
* Move async tests behind cfg-ed mod * Use explicit tokio features for the example * Use only relative crate path for example dependency
This commit is contained in:
@@ -17,8 +17,8 @@ clap = "2.33"
|
||||
env_logger = "0.8"
|
||||
futures = "0.3"
|
||||
serde = { version = "1.0" }
|
||||
tarpc = { version = "0.25", path = "../tarpc", features = ["full"] }
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
tarpc = { path = "../tarpc", features = ["full"] }
|
||||
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread"] }
|
||||
|
||||
[lib]
|
||||
name = "service"
|
||||
|
||||
Reference in New Issue
Block a user