diff --git a/src/simple.rs b/src/simple.rs index 8379009..e800073 100644 --- a/src/simple.rs +++ b/src/simple.rs @@ -13,6 +13,7 @@ use crate::{Action, Migration}; /// This vault may be useful if you want to re-use existing [`Action`]s and /// [`Migration`]s but don't need the additional guarantees and overhead of the /// other vaults. +#[derive(Debug)] pub struct SimpleVault(Connection); impl SimpleVault { diff --git a/src/tokio.rs b/src/tokio.rs index 82be041..822ce49 100644 --- a/src/tokio.rs +++ b/src/tokio.rs @@ -86,7 +86,7 @@ fn run(mut conn: Connection, mut rx: mpsc::UnboundedReceiver) { } /// A vault for use with [`tokio`]. -#[derive(Clone)] +#[derive(Debug, Clone)] pub struct TokioVault { tx: mpsc::UnboundedSender, }