Implement json-rpc functionality

This commit is contained in:
Tyera Eulberg
2018-08-10 17:05:23 -06:00
committed by Tyera Eulberg
parent 3ae867bdd6
commit fc1dbddd93
4 changed files with 204 additions and 0 deletions

View File

@@ -41,6 +41,7 @@ pub mod request_processor;
pub mod request_stage;
pub mod result;
pub mod retransmit_stage;
pub mod rpc;
pub mod rpu;
pub mod service;
pub mod signature;
@@ -63,6 +64,9 @@ extern crate byteorder;
extern crate chrono;
extern crate generic_array;
extern crate itertools;
#[macro_use]
extern crate jsonrpc_macros;
extern crate jsonrpc_http_server;
extern crate libc;
#[macro_use]
extern crate log;