From 24af64ac7e4d55698496ef2c518381d1f1566ee9 Mon Sep 17 00:00:00 2001 From: Wim Pomp Date: Sun, 27 Apr 2025 20:14:57 +0200 Subject: [PATCH] - make modules public --- Cargo.toml | 2 +- src/lib.rs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 95e9133..bdd842e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ndbioimage" -version = "2025.4.0" +version = "2025.4.1" edition = "2021" rust-version = "1.78.0" authors = ["Wim Pomp "] diff --git a/src/lib.rs b/src/lib.rs index ba289c0..cd693ff 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,11 +1,11 @@ mod bioformats; -mod axes; +pub mod axes; #[cfg(feature = "python")] mod py; -mod reader; -mod stats; -mod view; +pub mod reader; +pub mod stats; +pub mod view; #[cfg(test)] mod tests {