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
//! Kraken Spot trading API clients.
//!
//! This module provides:
//! - [`rest`] - REST API client for HTTP-based requests
//! - [`ws`] - WebSocket v2 API client for real-time streaming

pub mod rest;
pub mod ws;

pub use rest::SpotRestClient;
pub use ws::SpotWsClient;