kraken-api-client 0.1.0

An async Rust client library for the Kraken exchange REST and WebSocket v2 APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Futures REST API client.
//!
//! This module provides the REST API client for Kraken Futures trading.

mod client;
mod endpoints;
mod types;

pub use client::{FuturesRestClient, FuturesRestClientBuilder};
pub use endpoints::*;
pub use types::*;