From 1d301b45b791815f0dd13347de6381990f7595f9 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 12 Apr 2025 11:04:24 +0100 Subject: [PATCH] uncomment README.md documentation line and add core module declaration --- src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index f0fc571..4afd9d0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,5 @@ // #![doc = include_str!("../README.md")] +// uncomment the above line to include the README.md file in the documentation //! # msyrs //! @@ -18,6 +19,9 @@ /// Documentation and type-stubs for the `msyrs` Python API. pub mod _py; +/// Implementation for the `core` module. +pub mod core; + /// Implementation for the `download` module. pub mod download;