From 8680fbc0fab62e47a7736e5194badba84411ea7f Mon Sep 17 00:00:00 2001 From: jakka Date: Wed, 1 Oct 2025 13:52:04 +0300 Subject: moved types module --- src/lib.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index d059b6b..5d0e463 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,8 +1,10 @@ //! crate with hydrus client and traits necessary for fully using hydrus API -/// async traits, types and client implementation +/// async traits and client implementation #[cfg(feature = "async")] pub mod async_lib; -/// sync traits, types and client implementation +/// sync traits and client implementation #[cfg(feature = "sync")] pub mod sync_lib; +/// types for hydrus API +pub mod types; -- cgit v1.3.1