blob: 5d0e4636fe434731a6528ea94bafd7fadb576dd2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//! crate with hydrus client and traits necessary for fully using hydrus API
/// async traits and client implementation
#[cfg(feature = "async")]
pub mod async_lib;
/// sync traits and client implementation
#[cfg(feature = "sync")]
pub mod sync_lib;
/// types for hydrus API
pub mod types;
|