File tree 5 files changed +5
-0
lines changed 5 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 3
3
use std:: path:: Path ;
4
4
use url:: Url ;
5
5
6
+ #[ allow( deprecated) ] // WORKAROUND https://github.com/rust-lang-nursery/error-chain/issues/254
6
7
mod errors;
7
8
pub use crate :: errors:: * ;
8
9
Original file line number Diff line number Diff line change 18
18
mod log;
19
19
mod common;
20
20
mod download_tracker;
21
+ #[ allow( deprecated) ] // WORKAROUND https://github.com/rust-lang-nursery/error-chain/issues/254
21
22
mod errors;
22
23
mod help;
23
24
mod job;
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ pub mod component;
9
9
pub mod config;
10
10
pub mod dist;
11
11
pub mod download;
12
+ #[ allow( deprecated) ] // WORKAROUND https://github.com/rust-lang-nursery/error-chain/issues/254
12
13
pub mod errors;
13
14
pub mod manifest;
14
15
pub mod manifestation;
Original file line number Diff line number Diff line change 1
1
#![ recursion_limit = "1024" ] // for error_chain!
2
2
3
+ #[ allow( deprecated) ] // WORKAROUND https://github.com/rust-lang-nursery/error-chain/issues/254
3
4
pub mod errors;
4
5
pub mod notifications;
5
6
pub mod raw;
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ fn component_for_bin(binary: &str) -> Option<&'static str> {
50
50
pub mod command;
51
51
mod config;
52
52
pub mod env_var;
53
+ #[ allow( deprecated) ] // WORKAROUND https://github.com/rust-lang-nursery/error-chain/issues/254
53
54
mod errors;
54
55
mod install;
55
56
mod notifications;
You can’t perform that action at this time.
0 commit comments