Skip to content

Commit

Permalink
fix(cargo): Pin serde versions
Browse files Browse the repository at this point in the history
  • Loading branch information
erickt committed Feb 28, 2016
1 parent 0ea6eea commit 973548a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_json"
version = "0.6.0"
version = "0.6.1"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A JSON serialization file format"
Expand All @@ -10,5 +10,5 @@ readme = "../README.md"
keywords = ["json", "serde", "serialization"]

[dependencies]
num = "*"
serde = "*"
num = "^0.1.27"
serde = "^0.6.0"
8 changes: 4 additions & 4 deletions json_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ syntex = { version = "*", optional = true }
serde_codegen = { version = "*", optional = true }

[dependencies]
num = "*"
rustc-serialize = "*"
serde = "*"
num = "^0.1.27"
rustc-serialize = "0.3.18"
serde = "^0.6.0"
serde_json = { version = "*", path = "../json" }
serde_macros = { version = "*", optional = true }
serde_macros = { version = "^0.6.0", optional = true }

[[test]]
name = "test"
Expand Down

0 comments on commit 973548a

Please sign in to comment.