Selaa lähdekoodia

Allow serde version in [0.7,0.9)

Richard Janis Goldschmidt 8 vuotta sitten
vanhempi
commit
a4ccb797cf
3 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  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"]