1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//!Kawaii VNDB API
//!
//!## Features
//!
//!`tokio-on` - Enables [tokio](https://tokio.rs/) implementation together with rustls.
//!`rustls-on` - Enables TLS implementation, using rustls
//!
#![warn(missing_docs)]
#![cfg_attr(feature = "cargo-clippy", allow(clippy::style))]

pub mod protocol;
pub mod client;