Skip to content

Commit 2205ef3

Browse files
committed
Remove clippy for now
1 parent 13e60c2 commit 2205ef3

File tree

3 files changed

+1
-14
lines changed

3 files changed

+1
-14
lines changed

.travis.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,7 @@ rust:
1414
before_script:
1515
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
1616
script:
17-
- |
18-
if [ "$TRAVIS_RUST_VERSION" = nightly ]; then
19-
travis-cargo build -- --features clippy
20-
else
21-
travis-cargo build
22-
fi
17+
- travis-cargo build
2318
- travis-cargo test
2419
- travis-cargo --only stable doc
2520
after_success:

Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ url = "1"
1717
version = "0.9"
1818
optional = true
1919

20-
[dependencies.clippy]
21-
optional = true
22-
version = "^0.*"
23-
2420
[features]
2521
default = ["http"]
2622
http = ["reqwest"]

src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@
2828
//! }
2929
//! ```
3030
31-
#![cfg_attr(feature="clippy", feature(plugin))]
32-
#![cfg_attr(feature="clippy", plugin(clippy))]
33-
#![cfg_attr(feature="clippy", warn(cyclomatic_complexity))]
34-
3531
extern crate url;
3632
#[cfg(feature = "http")]
3733
extern crate reqwest;

0 commit comments

Comments
 (0)