From fd0d75f61eb8dbd24de9de5dbc9220e7bb38e497 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Sun, 6 May 2018 17:41:06 +0200 Subject: [PATCH] Remove rustc-serialize (#176) --- mplex/Cargo.toml | 2 +- varint-rs/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mplex/Cargo.toml b/mplex/Cargo.toml index 995d4df3..0af55d9c 100644 --- a/mplex/Cargo.toml +++ b/mplex/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Parity Technologies "] [dependencies] bytes = "0.4.5" num-traits = "0.1.40" -num-bigint = "0.1.40" +num-bigint = { version = "0.1.40", default-features = false } tokio-io = "0.1" futures = "0.1" parking_lot = "0.4.8" diff --git a/varint-rs/Cargo.toml b/varint-rs/Cargo.toml index fb2fca18..8e282760 100644 --- a/varint-rs/Cargo.toml +++ b/varint-rs/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["Parity Technologies "] [dependencies] -num-bigint = "0.1.40" +num-bigint = { version = "0.1.40", default-features = false } num-traits = "0.1.40" bytes = "0.4.5" tokio-io = "0.1"