1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#![deny(missing_docs)]
#![cfg_attr(test, deny(warnings))]
#![feature(external_doc)]
#![doc(include = "../README.md")]
#![cfg_attr(test, feature(plugin))]
#![cfg_attr(test, plugin(clippy))]

#[macro_use]
extern crate lazy_static;

/// Cryptographic functions.
pub mod crypto;

mod feed;

pub use feed::*;