File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -229,20 +229,20 @@ impl Display for PgpPublicKey {
229
229
pub const UNIX_FALLBACK_SETTINGS : & str = "/etc/rustup/settings.toml" ;
230
230
231
231
pub struct Cfg {
232
- pub ( crate ) profile_override : Option < dist:: Profile > ,
232
+ profile_override : Option < dist:: Profile > ,
233
233
pub rustup_dir : PathBuf ,
234
234
pub settings_file : SettingsFile ,
235
235
pub fallback_settings : Option < FallbackSettings > ,
236
236
pub toolchains_dir : PathBuf ,
237
237
pub update_hash_dir : PathBuf ,
238
238
pub download_dir : PathBuf ,
239
- pub ( crate ) temp_cfg : temp:: Cfg ,
239
+ pub temp_cfg : temp:: Cfg ,
240
240
pgp_keys : Vec < PgpPublicKey > ,
241
241
pub toolchain_override : Option < String > ,
242
242
pub env_override : Option < String > ,
243
243
pub dist_root_url : String ,
244
244
pub dist_root_server : String ,
245
- pub ( crate ) notify_handler : Arc < dyn Fn ( Notification < ' _ > ) > ,
245
+ pub notify_handler : Arc < dyn Fn ( Notification < ' _ > ) > ,
246
246
}
247
247
248
248
impl Cfg {
Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ pub(crate) const SUPPORTED_MANIFEST_VERSIONS: [&str; 1] = ["2"];
26
26
27
27
#[ derive( Clone , Debug , PartialEq ) ]
28
28
pub struct Manifest {
29
- pub ( crate ) manifest_version : String ,
30
- pub ( crate ) date : String ,
29
+ manifest_version : String ,
30
+ pub date : String ,
31
31
pub packages : HashMap < String , Package > ,
32
32
pub renames : HashMap < String , String > ,
33
33
pub reverse_renames : HashMap < String , String > ,
34
- pub ( crate ) profiles : HashMap < Profile , Vec < String > > ,
34
+ profiles : HashMap < Profile , Vec < String > > ,
35
35
}
36
36
37
37
#[ derive( Clone , Debug , PartialEq ) ]
You can’t perform that action at this time.
0 commit comments