Rust-ftp finally with tls-native :D

This commit is contained in:
ChristianVisintin
2020-12-03 21:31:51 +01:00
parent a63af295de
commit 3112f999e3
3 changed files with 86 additions and 34 deletions

View File

@@ -15,10 +15,6 @@ Current version: 0.1.0 (??/??/2020)
- [Why TermSCP](#why-termscp)
- [Features](#features)
- [Installation](#installation)
- [Requirements](#requirements)
- [Install OpenSSL on Windows](#install-openssl-on-windows)
- [Precompiled Binaries](#precompiled-binaries)
- [Vcpkg](#vcpkg)
- [Cargo](#cargo)
- [Deb / Rpm](#deb--rpm)
- [Usage](#usage)
@@ -53,27 +49,6 @@ It happens very often to me when using SCP at work to forget the path of a file
If you're considering to install TermSCP I want to thank you 💛 ! I hope this project can be useful for you!
If you want to contribute to this project, don't forget to check out our contribute guide. [Read More](CONTRIBUTING.md)
### Requirements
- OpenSSL: only if you want **FTPS** support
#### Install OpenSSL on Windows
To install OpenSSL on Windows you have basically two options:
##### Precompiled Binaries
Download the precompiled binaries from <http://slproweb.com/products/Win32OpenSSL.html> (Non light installation); install to system path and then add to your environmental variables `OPENSSL_DIR=path\to\the\installation\dir`
##### Vcpkg
You can use [vcpkg](https://github.com/Microsoft/vcpkg) to install OpenSSL and then run
```dos
vcpkg install openssl:x64-windows
set VCPKG_ROOT=PATH_TO_VCPKG_INSTALLATION
```
### Cargo
```sh
@@ -107,7 +82,6 @@ TODO:
## Upcoming Features
- **File viewer**: possibility to show in a popup the file content from the explorer.
- **OpenSSL Replacement**: OpenSSL is kinda an annoying stuff, especially for Windows. Unfortunately rust-ftp requires OpenSSL to build. I'm working on replacing it on [rust-ftp](https://github.com/ChristianVisintin/rust-ftp/tree/rust-tls). If you want to give me a hand, feel free to contribute.
---