LuminS

Luminous Synchronize

A fast and reliable alternative to rsync for synchronizing local files

Build Status Code Coverage

Features

100% Rust
Powered by the Rayon library for high parallel perfomance
Supported on Unix platforms
Extremely fast at synchronizing directories with large quantities of files
Multithreaded copy, remove, and sync

Usage

```bash USAGE: lms [SUBCOMMAND]

FLAGS: -h, --help Prints help information -V, --version Prints version information

SUBCOMMANDS: cp Multithreaded directory copy help Prints this message or the help of the given subcommand(s) rm Multithreaded directory remove sync Multithreaded directory synchronization [aliases: s] ```

Sync

```bash USAGE: lms sync [FLAGS]

FLAGS: -h, --help Prints help information -n, --nodelete Do not delete any destination files -s, --secure Use a cryptographic hash function for hashing similar files -S, --sequential Copy files sequentially instead of in parallel -V, --version Prints version information -v, --verbose Verbose outputs

ARGS: Source directory Destination directory ```

Build

First install Rust (recommended using rustup).

zsh $ git clone https://github.com/wchang22/LuminS.git $ cd LuminS $ cargo build --release