marketstack 0.0.19

Rust bindings for Marketstack REST API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! A library for communicating with the Marketstack REST API.

pub mod api;
mod auth;
mod marketstack;
pub mod types;

pub use crate::auth::AuthError;
pub use crate::marketstack::{
    AsyncMarketstack, Marketstack, MarketstackBuilder, MarketstackError, RestError,
};
pub use crate::types::*;

#[cfg(test)]
mod test;