Export genesis creation function (#5252)

This commit is contained in:
Jack May
2019-07-23 21:34:17 -07:00
committed by GitHub
parent 547a7a345f
commit 536b4c1a25
7 changed files with 611 additions and 527 deletions

View File

@@ -20,6 +20,7 @@ solana-logger = { path = "../../logger", version = "0.17.0" }
solana-sdk = { path = "../../sdk", version = "0.17.0" }
bytecode_verifier = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.1" }
compiler = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.1" }
failure = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.1", package = "failure_ext" }
language_e2e_tests = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.1" }
state_view = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.1" }
@@ -29,9 +30,6 @@ vm = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.1" }
vm_cache_map = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.1" }
vm_runtime = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.1" }
[dev-dependencies]
compiler = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.1" }
[lib]
crate-type = ["lib"]
name = "solana_move_loader_api"