Remove abomonation_derive dependency

This commit is contained in:
Eduard Bopp 2017-08-14 16:26:36 +02:00
parent 2511e660eb
commit 66f491ffa7
1 changed files with 1 additions and 2 deletions

View File

@ -18,7 +18,7 @@ path = "src/lib.rs"
[features] [features]
arbitrary = [ "quickcheck" ] arbitrary = [ "quickcheck" ]
serde-serialize = [ "serde", "serde_derive", "num-complex/serde" ] serde-serialize = [ "serde", "serde_derive", "num-complex/serde" ]
abomonation-serialize = [ "abomonation", "abomonation_derive" ] abomonation-serialize = [ "abomonation" ]
[dependencies] [dependencies]
typenum = "1.4" typenum = "1.4"
@ -31,7 +31,6 @@ alga = "0.5"
serde = { version = "1.0", optional = true } serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true } serde_derive = { version = "1.0", optional = true }
abomonation = { version = "0.4", optional = true } abomonation = { version = "0.4", optional = true }
abomonation_derive = { version = "0.2", optional = true }
# clippy = "*" # clippy = "*"
[dependencies.quickcheck] [dependencies.quickcheck]