Cryptographically secure file transfer CLI tool
1191750d58
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.19.2 to 1.20.3. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.19.2...tokio-1.20.3) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.github/workflows | ||
data | ||
docs | ||
output | ||
src | ||
tests | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
LICENSE | ||
README.md |
Socket pair for FTP like file transfer
Single binary containing both server and client.
Installation and usage
Quickly run with:
cargo run -- <OPTIONS>
or create and run an optimized, independent binary:
cargo build --release
./target/release/fragilebyte <OPTIONS>
If no options are specified the app starts as a server by default. It can be started as a client by defining a target address:
USAGE:
fragilebyte [OPTIONS]
OPTIONS:
-b, --buffersize <BUFFERSIZE> Buffersize used in the file transfer (bytes) [default: 8192]
-f, --fileroot <FILEROOT> Path to the folder where the files are outputted as a client or
served from as a server [default: './output' / './data']
-h, --help Print help information
--localhost Run only in the local network
-p, --port <PORT> Port where the service is hosted [default: 8080]
-t, --target <TARGET> Server's address when connecting as a client
--timeout <TIMEOUT> Seconds of inactivity after which the server closes itself
[default: 30]
-V, --version Print version information