//! # yt-api
//!
//! With the `yt-api` crate you can interact asynchronously with the youtube-api.
//!
//! ## Performing a search query
//!
//! To perform a search query, you can create a [`SearchList`][search_list] query.
//!
//! ```rust
//! # use yt_api::{
//! # search::SearchList,
//! # ApiKey,
//! # };
//! #
//! # futures::executor::block_on(async {
//! let result = SearchList::new(ApiKey::new("your-youtube-api-key")).q("rust lang").await;
//! # });
//! ```
//!
//! [search_list]: ./search/struct.SearchList.html
//! [search_perform]: ./search/struct.SearchList.html#method.perform
use Serialize;
;