Disable clippy until Manishearth/rust-clippy#1174 is fixed

This commit is contained in:
David Tolnay
2016-08-18 14:05:06 -04:00
parent 1796536962
commit 2bc1d62e50
6 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ std = []
unstable = [] unstable = []
alloc = ["unstable"] alloc = ["unstable"]
collections = ["alloc"] collections = ["alloc"]
unstable-testing = ["clippy", "unstable", "std"] unstable-testing = ["unstable", "std"]
[dependencies] [dependencies]
clippy = { version = "^0.*", optional = true } clippy = { version = "^0.*", optional = true }
+1 -1
View File
@@ -13,7 +13,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/lib.rs.in"]
[features] [features]
default = ["with-syntex"] default = ["with-syntex"]
unstable = ["quasi_macros"] unstable = ["quasi_macros"]
unstable-testing = ["clippy"] unstable-testing = []
with-syntex = [ with-syntex = [
"quasi/with-syntex", "quasi/with-syntex",
"quasi_codegen", "quasi_codegen",
+1 -1
View File
@@ -11,7 +11,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
[features] [features]
default = ["with-syntex"] default = ["with-syntex"]
unstable-testing = ["clippy"] unstable-testing = []
with-syntex = ["syntex_syntax", "syntex_errors"] with-syntex = ["syntex_syntax", "syntex_errors"]
[dependencies] [dependencies]
-2
View File
@@ -16,7 +16,6 @@ plugin = true
[features] [features]
unstable-testing = [ unstable-testing = [
"clippy",
"skeptic", "skeptic",
"serde_json", "serde_json",
"serde/unstable-testing", "serde/unstable-testing",
@@ -33,7 +32,6 @@ skeptic = { version = "^0.6.0", optional = true }
serde_json = { version = "0.8.0", optional = true } serde_json = { version = "0.8.0", optional = true }
[dev-dependencies] [dev-dependencies]
clippy = "^0.*"
compiletest_rs = "^0.2.0" compiletest_rs = "^0.2.0"
fnv = "1.0" fnv = "1.0"
rustc-serialize = "^0.3.16" rustc-serialize = "^0.3.16"
+1 -1
View File
@@ -1,5 +1,5 @@
#![feature(custom_derive, plugin)] #![feature(custom_derive, plugin)]
#![plugin(serde_macros, clippy)] #![plugin(serde_macros)]
#![deny(identity_op)] #![deny(identity_op)]
+1 -1
View File
@@ -11,7 +11,7 @@ keywords = ["serialization"]
build = "build.rs" build = "build.rs"
[features] [features]
unstable-testing = ["clippy", "serde/unstable-testing", "serde_codegen/unstable-testing"] unstable-testing = ["serde/unstable-testing", "serde_codegen/unstable-testing"]
[build-dependencies] [build-dependencies]
serde_codegen = { path = "../serde_codegen", features = ["with-syntex"] } serde_codegen = { path = "../serde_codegen", features = ["with-syntex"] }