plsync 0.2.2

Parallel local only `rsync` implementation in Rust
Documentation
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug executable 'plsync'",
            "cargo": {
                "args": [
                    "build",
                    "--bin=plsync",
                    "--package=plsync"
                ],
                "filter": {
                    "name": "plsync",
                    "kind": "bin"
                }
            },
            "args": [
                // "-n",
                "--progress",
                "--stats",
                "--parallelism=8",
                "--log-level=warn",
                "--exclude=**/a",
                "/user/Temporal/",
                "/user/Temporal2/"
            ],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in library 'plsync'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--lib",
                    "--package=plsync"
                ],
                "filter": {
                    "name": "plsync",
                    "kind": "lib"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in executable 'plsync'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--bin=plsync",
                    "--package=plsync"
                ],
                "filter": {
                    "name": "plsync",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug integration test 'integration_test'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--test=integration_test",
                    "--package=plsync"
                ],
                "filter": {
                    "name": "integration_test",
                    "kind": "test"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}