dist_lock 0.0.1

Distributed lock
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(feature = "diesel")]
pub mod diesel;
#[cfg(feature = "redis")]
pub mod redis;
#[cfg(feature = "zookeeper")]
pub mod zookeeper;

mod help;

#[cfg(feature = "diesel")]
pub use diesel::DieselDriver;

#[cfg(feature = "redis")]
pub use redis::RedisDriver;

#[cfg(feature = "zookeeper")]
pub use zookeeper::ZookeeperDriver;