rusync
rusync copied to clipboard
Minimalist rsync implementation in Rust
> `term_size` is unmaintained; use `terminal_size` instead | Details | | | ------------------- | ---------------------------------------------- | | Status | unmaintained | | Package | `term_size` | | Version | `0.3.2`...
Steps to reproduce: * create a file: `b'test/src/Chopin - Piano\xe3\x80\x80Concerto\xe3\x80\x80No.1.mp3` * try to rusync from `test/src` to `test/dest` in a smallish window * your terminal gets flooded instead of the...
When transferring a lot of files, rusync ends up consuming a lot of RAM. There's a memory leak somewhere, perhaps the stuff that collects transfer errors?
Here is the error I am getting: ``` Compiling rusync v0.7.2 error[E0308]: mismatched types --> /home/kdas/.cargo/registry/src/github.com-1ecc6299db9ec823/rusync-0.7.2/src/fsops.rs:86:42 | 86 | if dest_target != src_target { | __________________________________________^ 87 | | fs::remove_file(dest.path()).with_context(||...
Hi, `rusync` copy and creates new files but there are no archive option like `cp` has or `--times` flag like `rsync` has. I understand the project is done and adding...