@@ -32,7 +32,6 @@ pub enum Notification<'a> {
3232 DownloadingLegacyManifest ,
3333 SkippingNightlyMissingComponent ( & ' a ToolchainDesc , & ' a Manifest , & ' a [ Component ] ) ,
3434 ForcingUnavailableComponent ( & ' a str ) ,
35- ManifestChecksumFailedHack ,
3635 ComponentUnavailable ( & ' a str , Option < & ' a TargetTriple > ) ,
3736 StrayHash ( & ' a Path ) ,
3837 SignatureInvalid ( & ' a str ) ,
@@ -67,7 +66,6 @@ impl<'a> Notification<'a> {
6766 | RemovingComponent ( _, _, _)
6867 | RemovingOldComponent ( _, _, _)
6968 | ComponentAlreadyInstalled ( _)
70- | ManifestChecksumFailedHack
7169 | RollingBack
7270 | DownloadingManifest ( _)
7371 | SkippingNightlyMissingComponent ( _, _, _)
@@ -150,9 +148,6 @@ impl<'a> Display for Notification<'a> {
150148 write ! ( f, "latest update on {date}, no rust version" )
151149 }
152150 DownloadingLegacyManifest => write ! ( f, "manifest not found. trying legacy manifest" ) ,
153- ManifestChecksumFailedHack => {
154- write ! ( f, "update not yet available, sorry! try again later" )
155- }
156151 ComponentUnavailable ( pkg, toolchain) => {
157152 if let Some ( tc) = toolchain {
158153 write ! ( f, "component '{pkg}' is not available on target '{tc}'" )
0 commit comments