@@ -32,7 +32,6 @@ pub enum Notification<'a> {
32
32
DownloadingLegacyManifest ,
33
33
SkippingNightlyMissingComponent ( & ' a ToolchainDesc , & ' a Manifest , & ' a [ Component ] ) ,
34
34
ForcingUnavailableComponent ( & ' a str ) ,
35
- ManifestChecksumFailedHack ,
36
35
ComponentUnavailable ( & ' a str , Option < & ' a TargetTriple > ) ,
37
36
StrayHash ( & ' a Path ) ,
38
37
SignatureInvalid ( & ' a str ) ,
@@ -67,7 +66,6 @@ impl<'a> Notification<'a> {
67
66
| RemovingComponent ( _, _, _)
68
67
| RemovingOldComponent ( _, _, _)
69
68
| ComponentAlreadyInstalled ( _)
70
- | ManifestChecksumFailedHack
71
69
| RollingBack
72
70
| DownloadingManifest ( _)
73
71
| SkippingNightlyMissingComponent ( _, _, _)
@@ -150,9 +148,6 @@ impl<'a> Display for Notification<'a> {
150
148
write ! ( f, "latest update on {date}, no rust version" )
151
149
}
152
150
DownloadingLegacyManifest => write ! ( f, "manifest not found. trying legacy manifest" ) ,
153
- ManifestChecksumFailedHack => {
154
- write ! ( f, "update not yet available, sorry! try again later" )
155
- }
156
151
ComponentUnavailable ( pkg, toolchain) => {
157
152
if let Some ( tc) = toolchain {
158
153
write ! ( f, "component '{pkg}' is not available on target '{tc}'" )
0 commit comments