1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//! Another implementation of a client for the TMDB API
//!
//! It provides a support for async and implements each command using the Command pattern.

#![warn(clippy::all, rust_2018_idioms)]
#![forbid(unsafe_code)]

#[macro_use]
extern crate serde;
#[macro_use]
extern crate serde_repr;

/// The used version of reqwest
#[cfg(feature = "commands")]
pub use reqwest;

pub mod certification;
pub mod changes;
#[cfg(feature = "commands")]
pub mod client;
pub mod collection;
pub mod company;
pub mod error;
pub mod genre;
pub mod movie;
pub mod people;
#[cfg(feature = "commands")]
pub mod prelude;
pub mod tvshow;
pub mod watch_provider;

pub mod common;
mod util;

#[cfg(feature = "commands")]
pub use client::Client;