From 228f24cb3020b719540fc9665e4aff21528fc69e Mon Sep 17 00:00:00 2001 From: jakka Date: Wed, 1 Oct 2025 12:57:32 +0300 Subject: broke down modules and renamed them --- src/lib.rs | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index c2a0350..d059b6b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,13 +1,8 @@ -//! crate with hydrus client and traits necessary for accesing hydrus API +//! crate with hydrus client and traits necessary for fully using hydrus API -/// this crate's hydrus client async implementation +/// async traits, types and client implementation #[cfg(feature = "async")] -pub mod client_async; -/// traits for accessing hydrus API -#[cfg(feature = "async")] -pub mod traits_async; -/// various objects for de/serializing requests -pub mod types; - -#[cfg(test)] -mod tests; +pub mod async_lib; +/// sync traits, types and client implementation +#[cfg(feature = "sync")] +pub mod sync_lib; -- cgit v1.3.1