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
//! Delphi Oracle Service

#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, trivial_casts, unused_qualifications)]

pub mod application;
pub mod commands;
pub mod config;
pub mod currency;
pub mod error;
pub mod https_client;
pub mod networks;
pub mod prelude;
pub mod price;
pub mod router;
pub mod sources;
pub mod trading_pair;

pub use self::{
    currency::Currency,
    error::{Error, ErrorKind},
    price::{Price, PriceQuantity},
    trading_pair::TradingPair,
};

pub use std::collections::{btree_map as map, BTreeMap as Map};