Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//!Kawaii VNDB API
//!
//!## Features
//!
//!- `tokio-on` - Enables [tokio](https://tokio.rs/) implementation.
//!- `rustls-on` - Enables TLS implementation, using rustls
//!
//!## TLS client
//!
//!Due to bad default choice of underlying crypto library, `rustls` is included with `default-features = false` which essentially makes it unusable until user provides feature.

#![warn(missing_docs)]
#![allow(clippy::style)]

mod utils;
pub mod protocol;
pub mod client;