6个版本
0.1.5 | 2020年6月11日 |
---|---|
0.1.4 | 2020年6月11日 |
#30 in #kraken
8KB
155 行
kraken_api
这是一个提供对 kraken.com APIs 访问的库。
使用方法
use std::error::Error;
use kraken_api::api::Kraken;
#[runtime::main]
async fn main() -> Result<(), Box<dyn Error + Send + Sync + 'static>> {
// code to get key, secret and totp goes here
// ......
// ......
let kraken = Kraken::new(key, secret, totp);
kraken.start().await?;
}
依赖关系
~17MB
~430K SLoC