poa-bridge/bridge/src/lib.rs

30 lines
480 B
Rust
Raw Normal View History

#[macro_use]
extern crate futures;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate toml;
extern crate web3;
extern crate tokio_core;
extern crate tokio_timer;
#[macro_use]
extern crate error_chain;
extern crate ethabi;
#[macro_use]
extern crate ethabi_derive;
#[macro_use]
extern crate ethabi_contract;
#[macro_use]
mod macros;
pub mod api;
pub mod app;
pub mod config;
pub mod bridge;
pub mod contracts;
pub mod database;
pub mod error;
pub mod util;