alpaca_trader_rs/lib.rs
1//! Alpaca Markets trading library.
2//!
3//! Provides an async REST client, real-time WebSocket stream abstractions, and
4//! all supporting domain types for building Alpaca trading applications in Rust.
5
6#![deny(missing_docs)]
7
8pub mod client;
9pub mod commands;
10pub mod config;
11pub mod events;
12pub mod logging;
13pub mod stream;
14pub mod types;