Initial integration of dynamic contracts and native module loading (#1256)

* Integration of native dynamic programs
This commit is contained in:
jackcmay
2018-09-23 22:13:44 -07:00
committed by GitHub
parent a1f01fb8f8
commit 26b1466ef6
12 changed files with 604 additions and 15 deletions

View File

@@ -21,6 +21,7 @@ pub mod instruction;
pub mod crdt;
pub mod budget_program;
pub mod drone;
pub mod dynamic_program;
pub mod entry;
pub mod entry_writer;
#[cfg(feature = "erasure")]
@@ -82,6 +83,7 @@ extern crate jsonrpc_core;
extern crate jsonrpc_macros;
extern crate jsonrpc_http_server;
extern crate libc;
extern crate libloading;
#[macro_use]
extern crate log;
extern crate nix;