xch 0.1.0

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

#[cfg(windows)]
mod windows;
#[cfg(windows)]
pub use self::windows::{xch, PlatformError};

#[cfg(not(windows))]
compile_error!("libxch not supported on this platform!");