kraken_async_rs/
lib.rs

1//! A fully-typed API wrapper of the Kraken Pro API for both REST calls and Websockets.
2//!
3//! This wrapper is meant to be usable on its own if trading solely on Kraken, but has not been
4//! overly-tailored for direct use. The ideal use-case is writing generic trading code that works
5//! on a layer above this client (whatever your ideal API is), and then uses this library to
6//! implement your version on Kraken.
7//!
8pub mod clients;
9pub mod crypto;
10pub mod rate_limiting;
11pub mod request_types;
12pub mod response_types;
13pub mod secrets;
14#[cfg(test)]
15pub mod test_data;
16#[cfg(feature = "test-support")]
17pub mod test_support;
18pub mod wss;