@@ -37,7 +37,6 @@ pub enum Notification<'a> {
3737 StrayHash ( & ' a Path ) ,
3838 SignatureInvalid ( & ' a str ) ,
3939 RetryingDownload ( & ' a str ) ,
40- LinkingDirectory ( & ' a Path , & ' a Path ) ,
4140 CopyingDirectory ( & ' a Path , & ' a Path ) ,
4241 RemovingDirectory ( & ' a str , & ' a Path ) ,
4342 DownloadingFile ( & ' a Url , & ' a Path ) ,
@@ -123,7 +122,6 @@ impl Notification<'_> {
123122 SignatureInvalid ( _) => NotificationLevel :: Warn ,
124123 SetDefaultBufferSize ( _) => NotificationLevel :: Trace ,
125124 RemovingDirectory ( _, _)
126- | LinkingDirectory ( _, _)
127125 | CopyingDirectory ( _, _)
128126 | DownloadingFile ( _, _)
129127 | DownloadContentLengthReceived ( _, _)
@@ -258,7 +256,6 @@ impl Display for Notification<'_> {
258256 SignatureInvalid ( url) => write ! ( f, "Signature verification failed for '{url}'" ) ,
259257 RetryingDownload ( url) => write ! ( f, "retrying download for '{url}'" ) ,
260258 Error ( e) => write ! ( f, "error: '{e}'" ) ,
261- LinkingDirectory ( _, dest) => write ! ( f, "linking directory from: '{}'" , dest. display( ) ) ,
262259 CopyingDirectory ( src, _) => write ! ( f, "copying directory from: '{}'" , src. display( ) ) ,
263260 RemovingDirectory ( name, path) => {
264261 write ! ( f, "removing {} directory: '{}'" , name, path. display( ) )
0 commit comments