natrium 0.2.0

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

extern crate byteorder;
// #[macro_use]
extern crate failure;

pub mod chacha;

/// Result type.
pub type Result<T> = std::result::Result<T, failure::Error>;