kraken_api 0.1.5

kraken_api is a library for using both the public and private kraken.com APIs. It is currently a work in progress.
Documentation
1
2
3
4
5
6
7
8
9
pub mod api;
mod crypto;
mod error;

pub use log;
use std::error::Error;

// saving some typing
type GenError = Box<dyn Error + Send + Sync + 'static>;