Update to Tokio 0.2 and futures 0.3 (#277)

This commit is contained in:
Artem Vorotnikov
2019-11-27 19:53:44 -08:00
committed by Tim
parent 5e19b79aa4
commit 709b966150
15 changed files with 106 additions and 212 deletions

View File

@@ -14,10 +14,10 @@ description = "An example server built on tarpc."
[dependencies]
clap = "2.0"
futures-preview = { version = "0.3.0-alpha.18" }
futures = "0.3"
serde = { version = "1.0" }
tarpc = { version = "0.18", path = "../tarpc", features = ["json-transport", "serde1"] }
tokio = "0.2.0-alpha.3"
tarpc = { version = "0.18", path = "../tarpc", features = ["full"] }
tokio = "0.2"
env_logger = "0.6"
[lib]