File tree Expand file tree Collapse file tree 3 files changed +1
-14
lines changed Expand file tree Collapse file tree 3 files changed +1
-14
lines changed Original file line number Diff line number Diff line change 14
14
before_script :
15
15
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
16
16
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
23
18
- travis-cargo test
24
19
- travis-cargo --only stable doc
25
20
after_success :
Original file line number Diff line number Diff line change @@ -17,10 +17,6 @@ url = "1"
17
17
version = " 0.9"
18
18
optional = true
19
19
20
- [dependencies .clippy ]
21
- optional = true
22
- version = " ^0.*"
23
-
24
20
[features ]
25
21
default = [" http" ]
26
22
http = [" reqwest" ]
Original file line number Diff line number Diff line change 28
28
//! }
29
29
//! ```
30
30
31
- #![ cfg_attr( feature="clippy" , feature( plugin) ) ]
32
- #![ cfg_attr( feature="clippy" , plugin( clippy) ) ]
33
- #![ cfg_attr( feature="clippy" , warn( cyclomatic_complexity) ) ]
34
-
35
31
extern crate url;
36
32
#[ cfg( feature = "http" ) ]
37
33
extern crate reqwest;
You can’t perform that action at this time.
0 commit comments