- make modules public

This commit is contained in:
Wim Pomp
2025-04-27 20:14:57 +02:00
parent 5195ccfcb5
commit 24af64ac7e
2 changed files with 5 additions and 5 deletions

View File

@@ -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 <w.pomp@nki.nl>"]

View File

@@ -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 {