summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs17
1 files changed, 6 insertions, 11 deletions
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;