fsync 0.1.0

Keeps files and directories synchronized.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
error_chain! {
    errors {
        InvalidUsage(msg: String) {
            description("invalid usage")
            display("invalid usage: {}", msg)
        }
    }

    foreign_links {
        Io(::std::io::Error);
        SystemTimeError(::std::time::SystemTimeError);
    }
}