checker 0.0.3

A crates.io crate name availability checker
Documentation
// std
pub use std::{
  fmt::{self, Display},
  fs::write,
  io,
  path::PathBuf,
};

// depdendencies
pub use chrono::NaiveDateTime;
pub use prettytable::{format, Cell, Row, Table as PrettyTable};
pub use reqwest::{blocking, Response, StatusCode};
pub use serde::{Deserialize, Serialize};
pub use serde_json::{from_str, from_value, Value};
pub use snafu::{ResultExt, Snafu};
pub use structopt::StructOpt;

// modules
pub(crate) use crate::error;

// structs and enums
pub use crate::{
  check::check,
  client::Client,
  data::{Data, Links, Owner},
  error::{Error, Result},
  opt::Opt,
  package::Package,
  status::Status,
  table::Table,
};