diff --git a/src/store/mod.rs b/src/store/mod.rs index ea9cb78..28331a6 100644 --- a/src/store/mod.rs +++ b/src/store/mod.rs @@ -19,6 +19,7 @@ pub trait UnlockOnDrop: Send + Sync + 'static {} /// Lock guard preventing concurrent access to a resource. /// /// The lock is released when this guard is dropped. +#[allow(dead_code)] pub struct EventStoreLockGuard(Box); impl EventStoreLockGuard {