Skip to content

Commit

Permalink
Bump clippy dependency to compile on 1.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonTeixidor authored and erickt committed Jan 24, 2016
1 parent 0a32cea commit a5d0703
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde"
version = "0.6.10"
version = "0.6.11"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A generic serialization/deserialization framework"
Expand All @@ -17,5 +17,5 @@ num-impls = ["num-bigint", "num-complex", "num-rational"]
num-rational = ["num/rational"]

[dependencies]
clippy = { version = "^0.0.36", optional = true }
clippy = { version = "^0.0.37", optional = true }
num = { version = "^0.1.27", default-features = false }
4 changes: 2 additions & 2 deletions serde_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_codegen"
version = "0.6.10"
version = "0.6.11"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Macros to auto-generate implementations for the serde framework"
Expand All @@ -20,7 +20,7 @@ syntex = { version = "^0.26.0", optional = true }

[dependencies]
aster = { version = "^0.10.0", default-features = false }
clippy = { version = "^0.0.36", optional = true }
clippy = { version = "^0.0.37", optional = true }
quasi = { version = "^0.4.0", default-features = false }
quasi_macros = { version = "^0.4.0", optional = true }
syntex = { version = "^0.26.0", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions serde_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_macros"
version = "0.6.10"
version = "0.6.11"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Macros to auto-generate implementations for the serde framework"
Expand All @@ -13,7 +13,7 @@ name = "serde_macros"
plugin = true

[dependencies]
clippy = "^0.0.36"
clippy = "^0.0.37"
serde_codegen = { version = "^0.6.10", path = "../serde_codegen", default-features = false, features = ["nightly"] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions serde_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_tests"
version = "0.6.2"
version = "0.6.3"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A generic serialization/deserialization framework"
Expand All @@ -25,7 +25,7 @@ serde = { version = "*", path = "../serde", features = ["num-impls"] }
syntex = "^0.26.0"

[dependencies]
clippy = { version = "^0.0.36", optional = true }
clippy = { version = "^0.0.37", optional = true }

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

0 comments on commit a5d0703

Please sign in to comment.