Revert "Disable clippy until Manishearth/rust-clippy#1174 is fixed"
This reverts commit 2bc1d62e50b799e06b51742a8490b546395e04ec.
This commit is contained in:
parent
7aba920dec
commit
621588b258
@ -18,7 +18,7 @@ std = []
|
|||||||
unstable = []
|
unstable = []
|
||||||
alloc = ["unstable"]
|
alloc = ["unstable"]
|
||||||
collections = ["alloc"]
|
collections = ["alloc"]
|
||||||
unstable-testing = ["unstable", "std"]
|
unstable-testing = ["clippy", "unstable", "std"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clippy = { version = "^0.*", optional = true }
|
clippy = { version = "^0.*", optional = true }
|
||||||
|
@ -14,7 +14,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 = []
|
unstable-testing = ["clippy"]
|
||||||
with-syntex = [
|
with-syntex = [
|
||||||
"quasi/with-syntex",
|
"quasi/with-syntex",
|
||||||
"quasi_codegen",
|
"quasi_codegen",
|
||||||
|
@ -12,7 +12,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["with-syntex"]
|
default = ["with-syntex"]
|
||||||
unstable-testing = []
|
unstable-testing = ["clippy"]
|
||||||
with-syntex = ["syntex_syntax", "syntex_errors"]
|
with-syntex = ["syntex_syntax", "syntex_errors"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
@ -17,6 +17,7 @@ plugin = true
|
|||||||
|
|
||||||
[features]
|
[features]
|
||||||
unstable-testing = [
|
unstable-testing = [
|
||||||
|
"clippy",
|
||||||
"skeptic",
|
"skeptic",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"serde/unstable-testing",
|
"serde/unstable-testing",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#![feature(custom_derive, plugin)]
|
#![feature(custom_derive, plugin)]
|
||||||
#![plugin(serde_macros)]
|
#![plugin(serde_macros, clippy)]
|
||||||
|
|
||||||
#![deny(identity_op)]
|
#![deny(identity_op)]
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ keywords = ["serialization"]
|
|||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
unstable-testing = ["serde/unstable-testing", "serde_codegen/unstable-testing"]
|
unstable-testing = ["clippy", "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"] }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user