From 49c22aa7af4983d334b8c1b2482095f85c21faa7 Mon Sep 17 00:00:00 2001 From: Bauke Date: Tue, 23 Jan 2024 18:08:52 +0100 Subject: [PATCH] Don't export the indexmap macro. --- gegl/source/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gegl/source/lib.rs b/gegl/source/lib.rs index 5bf28e1..7b477ad 100644 --- a/gegl/source/lib.rs +++ b/gegl/source/lib.rs @@ -6,7 +6,7 @@ mod operations; pub use operations::*; -pub use indexmap::indexmap; +use indexmap::indexmap; /// Type alias for a [`indexmap::IndexMap`] with static [`str`] keys and /// [`String`] values. The reason for [`mod@indexmap`] is to preserve insertion