浏览代码

Allow serde version in [0.7,0.9)

Richard Janis Goldschmidt 8 年之前
父节点
当前提交
a4ccb797cf
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      bigint/Cargo.toml
  2. 1 1
      complex/Cargo.toml
  3. 1 1
      rational/Cargo.toml

+ 1 - 1
bigint/Cargo.toml

@@ -29,7 +29,7 @@ version = "0.3.19"
 
 [dependencies.serde]
 optional = true
-version = "0.7.0"
+version = ">= 0.7.0, < 0.9.0"
 
 [features]
 default = ["rand", "rustc-serialize"]

+ 1 - 1
complex/Cargo.toml

@@ -22,7 +22,7 @@ version = "0.3.19"
 
 [dependencies.serde]
 optional = true
-version = "^0.7.0"
+version = ">= 0.7.0, < 0.9.0"
 
 [features]
 default = ["rustc-serialize"]

+ 1 - 1
rational/Cargo.toml

@@ -30,7 +30,7 @@ version = "0.3.19"
 
 [dependencies.serde]
 optional = true
-version = "0.7.0"
+version = ">= 0.7.0, < 0.9.0"
 
 [features]
 default = ["bigint", "rustc-serialize"]