process_lock 0.1.0

This is process lock impl multi process for rust
Documentation
1
2
3
4
5
6
7
8
9
10

pub use self::imp::*;

#[cfg(unix)]
#[path = "unix/mod.rs"]
mod imp;

#[cfg(windows)]
#[path = "windows/mod.rs"]
mod imp;