From 088e5f8f2cbd655806aedfa6602f243b029d1c2f Mon Sep 17 00:00:00 2001 From: Artem Vorotnikov Date: Thu, 4 Apr 2019 20:34:11 +0300 Subject: [PATCH] Remove deprecated feature from bincode dependency (#218) --- bincode-transport/Cargo.toml | 2 +- tarpc/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bincode-transport/Cargo.toml b/bincode-transport/Cargo.toml index 83d8931..94a9ffb 100644 --- a/bincode-transport/Cargo.toml +++ b/bincode-transport/Cargo.toml @@ -13,7 +13,7 @@ readme = "../README.md" description = "A bincode-based transport for tarpc services." [dependencies] -bincode = { version = "1.0", features = ["i128"] } +bincode = "1" futures_legacy = { version = "0.1", package = "futures" } pin-utils = "0.1.0-alpha.4" rpc = { package = "tarpc-lib", version = "0.3", path = "../rpc", features = ["serde1"] } diff --git a/tarpc/Cargo.toml b/tarpc/Cargo.toml index 416ab86..7392079 100644 --- a/tarpc/Cargo.toml +++ b/tarpc/Cargo.toml @@ -28,7 +28,7 @@ rpc = { package = "tarpc-lib", path = "../rpc", version = "0.3" } futures-preview = "0.3.0-alpha.13" [dev-dependencies] -bincode = "1.0" +bincode = "1" bytes = { version = "0.4", features = ["serde"] } humantime = "1.0" futures-preview = { version = "0.3.0-alpha.13", features = ["compat"] }