tmdb_api/
lib.rs

1#![doc = include_str!("../readme.md")]
2#![warn(clippy::all, rust_2018_idioms)]
3#![forbid(unsafe_code)]
4
5#[macro_use]
6extern crate serde;
7#[macro_use]
8extern crate serde_repr;
9
10/// The used version of chrono
11pub use chrono;
12/// The used version of reqwest
13pub use reqwest;
14
15pub use client::Client;
16
17pub mod certification;
18pub mod changes;
19
20pub mod client;
21pub mod collection;
22pub mod company;
23pub mod error;
24pub mod genre;
25pub mod movie;
26pub mod people;
27pub mod tvshow;
28pub mod watch_provider;
29
30pub mod common;
31pub mod configuration;
32mod util;
33
34pub type Result<V> = std::result::Result<V, crate::error::Error>;