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