telereads 0.1.12

@TelereadsBot is an inline bot that allows you to search for books and quickly share them in a conversation.
Documentation
//! This crate exposes TelegramBot.

#![deny(
    missing_docs,
    missing_debug_implementations,
    trivial_casts,
    trivial_numeric_casts,
    unsafe_code,
    unstable_features,
    unused_import_braces,
    unused_qualifications
)]
extern crate ammonia;
#[macro_use]
extern crate log;
extern crate number_prefix;
extern crate pretty_env_logger;
extern crate reqwest;
extern crate retry;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
extern crate serde_xml_rs;

mod goodreads;
mod telegram;

pub use telegram::TelegramBot;