From efd1aa544697f14d2e3cb6632d02e8103c31d64c Mon Sep 17 00:00:00 2001 From: vladnik-osaro <126819658+vladnik-osaro@users.noreply.github.com> Date: Wed, 11 Jun 2025 16:47:28 +0000 Subject: [PATCH] Make npy public --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9a5950a..837a030 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -48,7 +48,7 @@ //! //! [header dictionary]: https://docs.scipy.org/doc/numpy/reference/generated/numpy.lib.format.html#format-version-1-0 -mod npy; +pub mod npy; #[cfg(feature = "npz")] mod npz;