blob: c2a03501174f70edb6aa46a3312ec6044a795700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//! crate with hydrus client and traits necessary for accesing hydrus API
/// this crate's hydrus client async 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;
|