rbackup 0.5.1

Incremental, cross-platform and multithreaded backup tool written in Rust
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(target_os = "windows")]
fn main() {
    // Niente da fare su Windows
}

#[cfg(not(target_os = "windows"))]
fn main() {
    // Niente da fare su macOS/Linux
}