rslock 0.7.4

Implementation of the distributed locking mechanism built on top of Async Redis
Documentation
1
2
3
4
5
6
7
mod resource;

#[cfg(any(feature = "async-std-comp", feature = "tokio-comp"))]
mod lock;

#[cfg(any(feature = "async-std-comp", feature = "tokio-comp"))]
pub use crate::lock::{Lock, LockError, LockGuard, LockManager};