From 0b26b5870e95a93bd743ea35c2a9505a818c7545 Mon Sep 17 00:00:00 2001 From: librelois <c@elo.tf> Date: Mon, 17 May 2021 14:58:57 +0200 Subject: [PATCH] feat(core): re-expose crate dubp-wot --- Cargo.toml | 1 + src/lib.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 09d2344..a2e1dc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,6 +16,7 @@ duniter-dbs-write-ops = { path = "dbs-write-ops", optional = true } duniter-mempools = { path = "mempools" } duniter-module = { path = "module" } duniter-global = { path = "global" } +dubp-wot = { path = "dubp-wot" } [features] bc-writer = ["duniter-dbs-write-ops"] diff --git a/src/lib.rs b/src/lib.rs index b0334c3..5e5caa2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,6 +13,7 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. +pub use dubp_wot as wot; pub use duniter_conf as conf; pub use duniter_dbs as dbs; #[cfg(feature = "bc-writer")] -- GitLab