From 66f491ffa7d84b59887f69611cae1466609b8896 Mon Sep 17 00:00:00 2001 From: Eduard Bopp Date: Mon, 14 Aug 2017 16:26:36 +0200 Subject: [PATCH] Remove abomonation_derive dependency --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1e7b3b4e..9110c8c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ path = "src/lib.rs" [features] arbitrary = [ "quickcheck" ] serde-serialize = [ "serde", "serde_derive", "num-complex/serde" ] -abomonation-serialize = [ "abomonation", "abomonation_derive" ] +abomonation-serialize = [ "abomonation" ] [dependencies] typenum = "1.4" @@ -31,7 +31,6 @@ alga = "0.5" serde = { version = "1.0", optional = true } serde_derive = { version = "1.0", optional = true } abomonation = { version = "0.4", optional = true } -abomonation_derive = { version = "0.2", optional = true } # clippy = "*" [dependencies.quickcheck]