fd-lock 4.0.2

Advisory cross-platform lock on a file using a file descriptor to it.
Documentation
1
2
3
4
5
6
7
8
9
mod read_guard;
mod rw_lock;
mod write_guard;

pub(crate) mod utils;

pub use read_guard::RwLockReadGuard;
pub use rw_lock::RwLock;
pub use write_guard::RwLockWriteGuard;