Rust 2021

This commit is contained in:
veeso
2021-11-09 12:10:21 +01:00
committed by Christian Visintin
parent e7a29b7f1a
commit 696e3ae582
3 changed files with 1 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ authors = ["Christian Visintin"]
categories = ["command-line-utilities"] categories = ["command-line-utilities"]
description = "termscp is a feature rich terminal file transfer and explorer with support for SCP/SFTP/FTP/S3" description = "termscp is a feature rich terminal file transfer and explorer with support for SCP/SFTP/FTP/S3"
documentation = "https://docs.rs/termscp" documentation = "https://docs.rs/termscp"
edition = "2018" edition = "2021"
homepage = "https://veeso.github.io/termscp/" homepage = "https://veeso.github.io/termscp/"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["scp-client", "sftp-client", "ftp-client", "winscp", "command-line-utility"] keywords = ["scp-client", "sftp-client", "ftp-client", "winscp", "command-line-utility"]

View File

@@ -97,7 +97,6 @@ impl FileTransferActivity {
LogLevel::Error, LogLevel::Error,
format!("Could not upload file: {}", err), format!("Could not upload file: {}", err),
); );
return;
} }
} }
FileExplorerTab::FindRemote | FileExplorerTab::Remote => { FileExplorerTab::FindRemote | FileExplorerTab::Remote => {
@@ -119,7 +118,6 @@ impl FileTransferActivity {
LogLevel::Error, LogLevel::Error,
format!("Could not download file: {}", err), format!("Could not download file: {}", err),
); );
return;
} }
} }
}, },
@@ -162,7 +160,6 @@ impl FileTransferActivity {
LogLevel::Error, LogLevel::Error,
format!("Could not upload file: {}", err), format!("Could not upload file: {}", err),
); );
return;
} }
} }
} }
@@ -196,7 +193,6 @@ impl FileTransferActivity {
LogLevel::Error, LogLevel::Error,
format!("Could not download file: {}", err), format!("Could not download file: {}", err),
); );
return;
} }
} }
} }

View File

@@ -113,7 +113,6 @@ impl FileTransferActivity {
LogLevel::Error, LogLevel::Error,
format!("Could not upload file: {}", err), format!("Could not upload file: {}", err),
); );
return;
} }
} }
} }
@@ -154,7 +153,6 @@ impl FileTransferActivity {
LogLevel::Error, LogLevel::Error,
format!("Could not upload file: {}", err), format!("Could not upload file: {}", err),
); );
return;
} }
} }
} }
@@ -185,7 +183,6 @@ impl FileTransferActivity {
LogLevel::Error, LogLevel::Error,
format!("Could not download file: {}", err), format!("Could not download file: {}", err),
); );
return;
} }
} }
} }
@@ -226,7 +223,6 @@ impl FileTransferActivity {
LogLevel::Error, LogLevel::Error,
format!("Could not download file: {}", err), format!("Could not download file: {}", err),
); );
return;
} }
} }
} }