xch 1.1.0

A CLI utility and rust crate to atomically swap the content of two paths.
Documentation
1
2
3
4
5
6
7

#[cfg_attr(target_os = "windows", path="windows.rs")]
#[cfg_attr(target_os = "linux", path="linux.rs")]
#[cfg_attr(all(not(target_os = "windows"), not(target_os = "linux")), path="not_implemented.rs")]
mod platform;

pub use self::platform::{xch, PlatformError};