1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Async Rust client for the Alpaca Market Data HTTP API.
//!
//! The crate follows a mirror layer plus thin convenience layer design:
//! resource methods track the official Alpaca HTTP API closely, while stable
//! helpers such as pagination aggregators remain opt-in.
//!
//! Environment variables:
//!
//! - `ALPACA_DATA_API_KEY`
//! - `ALPACA_DATA_SECRET_KEY`
//!
//! ```no_run
//! use alpaca_data::Client;
//!
//! let client = Client::builder().credentials_from_env()?.build()?;
//! let _stocks = client.stocks();
//! # Ok::<(), alpaca_data::Error>(())
//! ```
//!
//! See the workspace docs site at <https://wmzhai.github.io/alpaca-rust/>.
//!
extern crate self as alpaca_data;
pub use ;
pub use Error;
pub use ;