This repository was archived by the owner on Aug 16, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 35
35
global :
36
36
- secure : ncxJbvJM1vCZfcEftjsFKJMxxhKLgWKaR8Go9AMo0VB5fB2XVW/6NYO5bQEEYpOf1Nc/+2FbI2+Dkz0S/mJpUcNSfBgablCHgwU2sHse7KsoaqfHj2mf1E3exjzSHoP96hPGicC5zAjSXFjCgJPOUSGqqRaJ7z5AsJLhJT6LuK7QpvwPBZzklUN8T+n1sVmws8TNmRIbaniq/q6wYHANHcy6Dl59dx4sKwniUGiZdUhCiddVpoxbECSxc0A8mN2pk7/aW+WGxK3goBs5ZF7+JXF318F62pDcXQmR5CX6WdpenIcJ25g1Vg1WhQ4Ifpe17CN0bfxV8ShuzrQUThCDMffZCo9XySBtODdEowwK1UIpjnFLfIxjOs45Cd8o3tM2j0CfvtnjOz6BCdUU0qiwNPPNx0wFkx3ZiOfSh+FhBhvyPM12HN2tdN0esgVBItFmEci+sSIIXqjVL6DNiu5zTjbu0bs6COwlUWdmL6vmsZtq5tl7Cno9+C3szxRVAkShGydd04l9NYjqNEzTa1EPG50OsnVRKGdRiFzSxhc3BWExNKvcQ4v867t6/PpPkW6s4oXmYI3+De+8O7ExWc6a4alcrDXKlMs5fCb5Pcd4Ju9kowcjkoJo5yf2wW3Ox5R8SJpaEEpvyhx5O/qtIxjhHNzeo8Wsr/6gdNDv20r91TI=
37
37
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
38
+ - RUSTFLAGS="-D warnings"
38
39
matrix :
39
40
- FEATURES=--features=backtrace
40
41
- FEATURES=--no-default-features
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ macro_rules! error_chain_processed {
172
172
self . 0 . description( )
173
173
}
174
174
175
- #[ allow( unused_doc_comment) ]
175
+ #[ allow( unknown_lints , unused_doc_comment) ]
176
176
fn cause( & self ) -> Option <& :: std:: error:: Error > {
177
177
match self . 1 . next_error {
178
178
Some ( ref c) => Some ( & * * c) ,
@@ -424,7 +424,7 @@ macro_rules! impl_extract_backtrace {
424
424
( $error_name: ident
425
425
$error_kind_name: ident
426
426
$( [ $link_error_path: path, $( #[ $meta_links: meta] ) * ] ) * ) => {
427
- #[ allow( unused_doc_comment) ]
427
+ #[ allow( unknown_lints , unused_doc_comment) ]
428
428
fn extract_backtrace( e: & ( :: std:: error:: Error + Send + ' static ) )
429
429
-> Option <:: std:: sync:: Arc <$crate:: Backtrace >> {
430
430
if let Some ( e) = e. downcast_ref:: <$error_name>( ) {
Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ macro_rules! quick_error {
260
260
$item: ident: $imode: tt [ $( #[ $imeta: meta] ) * ] [ $( $var: ident: $typ: ty ) ,* ] { $( $funcs: tt ) * }
261
261
) * }
262
262
) => {
263
- #[ allow( unused, unused_doc_comment) ]
263
+ #[ allow( unknown_lints , unused, unused_doc_comment) ]
264
264
impl :: std:: fmt:: Display for $name {
265
265
fn fmt( & self , fmt: & mut :: std:: fmt:: Formatter )
266
266
-> :: std:: fmt:: Result
@@ -310,7 +310,7 @@ macro_rules! quick_error {
310
310
}
311
311
}
312
312
}*/
313
- #[ allow( unused, unused_doc_comment) ]
313
+ #[ allow( unknown_lints , unused, unused_doc_comment) ]
314
314
impl $name {
315
315
/// A string describing the error kind.
316
316
pub fn description( & self ) -> & str {
You can’t perform that action at this time.
0 commit comments