na_kraken_client/
lib.rs

1//! Kraken API client library
2//! 
3//! This crate provides a Rust interface to the Kraken cryptocurrency exchange API.
4//! It supports both public and private API endpoints, as well as WebSocket connections
5//! for real-time data.
6
7pub mod client;
8pub mod error;
9pub mod models;
10pub mod api;
11pub mod auth;
12pub mod config;
13pub mod utils;
14
15// Re-export commonly used types
16pub use client::KrakenClient;
17pub use error::Error;
18pub use config::Config;
19
20/// Library version
21pub const VERSION: &str = env!("CARGO_PKG_VERSION");