Skip to main content

metaflux/
lib.rs

1//! `metaflux` — a short alias for the `metaflux-client` SDK.
2//!
3//! This crate re-exports the entire public API of `metaflux-client`. Depend on
4//! `metaflux` and use it exactly as you would `metaflux_client`:
5//!
6//! ```
7//! use metaflux::types::MarketId;
8//! assert_eq!(MarketId(1).0, 1);
9//! ```
10//!
11//! See the `metaflux-client` crate for full documentation.
12
13#![forbid(unsafe_code)]
14
15#[doc(inline)]
16pub use metaflux_client::*;