File tree 7 files changed +7
-7
lines changed
7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ mod target_info;
16
16
pub use self :: target_info:: { FileFlavor , TargetInfo } ;
17
17
18
18
/// The build context, containing all information about a build task.
19
- pub struct BuildContext < ' a , ' cfg : ' a > {
19
+ pub struct BuildContext < ' a , ' cfg > {
20
20
/// The workspace the build is for.
21
21
pub ws : & ' a Workspace < ' cfg > ,
22
22
/// The cargo configuration.
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ impl fmt::Display for Metadata {
50
50
}
51
51
}
52
52
53
- pub struct CompilationFiles < ' a , ' cfg : ' a > {
53
+ pub struct CompilationFiles < ' a , ' cfg > {
54
54
/// The target directory layout for the host (and target if it is the same as host).
55
55
pub ( super ) host : Layout ,
56
56
/// The target directory layout for the target (if different from then host).
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ mod compilation_files;
27
27
use self :: compilation_files:: CompilationFiles ;
28
28
pub use self :: compilation_files:: { Metadata , OutputFile } ;
29
29
30
- pub struct Context < ' a , ' cfg : ' a > {
30
+ pub struct Context < ' a , ' cfg > {
31
31
pub bcx : & ' a BuildContext < ' a , ' cfg > ,
32
32
pub compilation : Compilation < ' cfg > ,
33
33
pub build_state : Arc < BuildState > ,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ use crate::CargoResult;
25
25
use log:: trace;
26
26
use std:: collections:: { HashMap , HashSet } ;
27
27
28
- struct State < ' a : ' tmp , ' cfg : ' a , ' tmp > {
28
+ struct State < ' a , ' cfg , ' tmp > {
29
29
cx : & ' tmp mut Context < ' a , ' cfg > ,
30
30
waiting_on_download : HashSet < PackageId > ,
31
31
downloads : Downloads < ' a , ' cfg > ,
Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ pub struct PackageSet<'cfg> {
290
290
}
291
291
292
292
/// Helper for downloading crates.
293
- pub struct Downloads < ' a , ' cfg : ' a > {
293
+ pub struct Downloads < ' a , ' cfg > {
294
294
set : & ' a PackageSet < ' cfg > ,
295
295
/// When a download is started, it is added to this map. The key is a
296
296
/// "token" (see `Download::token`). It is removed once the download is
Original file line number Diff line number Diff line change @@ -325,7 +325,7 @@ impl<'de> de::Deserialize<'de> for EncodablePackageId {
325
325
}
326
326
}
327
327
328
- pub struct WorkspaceResolve < ' a , ' cfg : ' a > {
328
+ pub struct WorkspaceResolve < ' a , ' cfg > {
329
329
pub ws : & ' a Workspace < ' cfg > ,
330
330
pub resolve : & ' a Resolve ,
331
331
}
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ pub struct WorkspaceRootConfig {
125
125
126
126
/// An iterator over the member packages of a workspace, returned by
127
127
/// `Workspace::members`
128
- pub struct Members < ' a , ' cfg : ' a > {
128
+ pub struct Members < ' a , ' cfg > {
129
129
ws : & ' a Workspace < ' cfg > ,
130
130
iter : slice:: Iter < ' a , PathBuf > ,
131
131
}
You can’t perform that action at this time.
0 commit comments