break dependency of programs on solana core (#1371)

* break dependency of programs on Solana core
This commit is contained in:
jackcmay
2018-09-27 07:49:26 -07:00
committed by GitHub
parent 874addc51a
commit 9c47e022dc
44 changed files with 95 additions and 66 deletions

View File

@@ -9,7 +9,6 @@
#![cfg_attr(feature = "unstable", feature(test))]
#[macro_use]
pub mod counter;
pub mod account;
pub mod bank;
pub mod banking_stage;
pub mod blob_fetch_stage;
@@ -41,7 +40,6 @@ pub mod packet;
pub mod payment_plan;
pub mod poh;
pub mod poh_recorder;
pub mod pubkey;
pub mod recvmmsg;
pub mod recycler;
pub mod replicate_stage;
@@ -84,6 +82,7 @@ extern crate generic_array;
extern crate ipnetwork;
extern crate itertools;
extern crate jsonrpc_core;
extern crate solana_program_interface;
#[macro_use]
extern crate jsonrpc_macros;
extern crate jsonrpc_http_server;