ripsync 1.2.0

A fast, memory-safe rsync alternative for local and SSH sync — rsync's superpower, none of its footguns.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Opt-in `rs` short-alias binary — identical to `ripsync`, built only with
//! `--features rs-alias` (the name collides with the BSD `rs` reshape tool, so
//! it is never installed by default).

/// Global allocator: mimalloc, matching the `ripsync` binary. Opt out with
/// `--features system-malloc` (or `--no-default-features`). Must live in the
/// binary crate root.
#[cfg(all(feature = "mimalloc", not(feature = "system-malloc")))]
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;

fn main() {
    ripsync::main();
}