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
#![allow(unused_parens)]
#![warn(clippy::future_not_send)]

//! Provides [Client], an opinionated wrapper around IMDB's dataset.  Because IMDB doesn't provide
//! a searchable API, this crate makes use of [indexkv] to create a local cache, on disk, that
//! provides fast ID lookups.  Datasets are downloaded as-needed.

mod error;
pub use error::Error;

mod client;
pub use client::Client;

mod episode;
use episode::EpisodeLink;
mod genre;
pub use genre::Genre;
mod movie;
pub use movie::Movie;
mod show;
pub use show::Episode;
pub use show::Show;
mod title;
pub use title::Title;
pub use title::TitleType;
pub(crate) mod util;