From 956bd17ad08aa85bb8e487203ef30380a8e61f7b Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 15 Nov 2024 01:57:32 +0100 Subject: [PATCH] `core`: Make `core::meta` public --- acrate-core/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/acrate-core/src/lib.rs b/acrate-core/src/lib.rs index e25af41..9df93e2 100644 --- a/acrate-core/src/lib.rs +++ b/acrate-core/src/lib.rs @@ -1,4 +1,5 @@ //! Core crate of the `acrate` project. mod schema; -mod meta; + +pub mod meta;