From ecf43d4684172d4197de1f45f2390c99d101810a Mon Sep 17 00:00:00 2001
From: librelois <c@elo.tf>
Date: Sat, 13 Mar 2021 20:01:28 +0100
Subject: [PATCH] [fix] kv_typed: *DbTxRw must be exposed

---
 rust-libs/tools/kv_typed/src/db_schema.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rust-libs/tools/kv_typed/src/db_schema.rs b/rust-libs/tools/kv_typed/src/db_schema.rs
index 3f1d3f316..657d7797d 100644
--- a/rust-libs/tools/kv_typed/src/db_schema.rs
+++ b/rust-libs/tools/kv_typed/src/db_schema.rs
@@ -35,7 +35,7 @@ macro_rules! db_schema {
                 }
             )*
             // Inner module used to hide internals types that must not be exposed on public api
-            pub use __inner::{[<$db_name Db>], [<$db_name DbRo>], [<$db_name DbWritable>], [<$db_name DbReadable>]};
+            pub use __inner::{[<$db_name Db>], [<$db_name DbRo>], [<$db_name DbWritable>], [<$db_name DbReadable>], [<$db_name DbTxRw>]};
             mod __inner {
                 use super::*;
                 use kv_typed::prelude::*;
-- 
GitLab