feat(impls): Add impls for num::{BigInt,BigUint,Complex,Ratio}

This commit is contained in:
Erick Tryzelaar
2015-12-01 09:03:08 -08:00
parent f3f098e7f5
commit 1a8a11e924
10 changed files with 201 additions and 4 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "serde_macros"
version = "0.6.5"
version = "0.6.6"
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Macros to auto-generate implementations for the serde framework"
@@ -18,4 +18,4 @@ serde_codegen = { version = "*", path = "../serde_codegen", default-features = f
[dev-dependencies]
num = "^0.1.27"
rustc-serialize = "^0.3.16"
serde = { version = "*", path = "../serde", features = ["nightly"] }
serde = { version = "*", path = "../serde", features = ["nightly", "num-impls"] }
+1
View File
@@ -1,6 +1,7 @@
#![feature(test, custom_attribute, custom_derive, plugin)]
#![plugin(serde_macros)]
extern crate num;
extern crate serde;
extern crate test;