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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#![deny(warnings)]

#[macro_use]
extern crate log;

#[macro_use]
extern crate lazy_static;

#[macro_use]
extern crate serde_derive;

extern crate aes_ctr;
extern crate bitcoin;
extern crate byteorder;
extern crate chrono;
extern crate emerald_rocksdb as rocksdb;
extern crate ethabi;
extern crate glob;
extern crate hex;
extern crate hidapi;
extern crate hmac;
extern crate jsonrpc_core;
extern crate jsonrpc_http_server;
extern crate num;
extern crate pbkdf2;
extern crate rand;
extern crate regex;
extern crate reqwest;
extern crate scrypt;
extern crate secp256k1;
extern crate serde;
extern crate serde_json;
extern crate sha2;
extern crate sha3;
extern crate time;
extern crate uuid;
extern crate dirs;

extern crate ethereum_types;
extern crate tiny_keccak;
extern crate rlp;

mod raw_transaction;
pub mod eth_utils;

mod contract;
mod core;
mod hdwallet;
pub mod keystore;
pub mod mnemonic;
pub mod rpc;
pub mod storage;
mod util;

pub use self::core::*;
pub use self::rpc::start;
pub use self::util::*;

pub use self::raw_transaction::RawTransaction;
pub use self::eth_utils::*;

const VERSION: Option<&'static str> = option_env!("CARGO_PKG_VERSION");

/// Get the current ethereum utils version.
pub fn version() -> &'static str {
    VERSION.unwrap_or("unknown")
}