Switch to forked libra packages (#5270)

* Switch to forked libra packages

* Don't Cargo.lock lib crates
This commit is contained in:
Greg Fitzgerald 2019-07-24 14:21:22 -06:00 committed by GitHub
parent 937816e67b
commit 83540087c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 480 additions and 4006 deletions

File diff suppressed because it is too large Load Diff

View File

@ -19,16 +19,16 @@ serde_json = "1.0.40"
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.2" }
compiler = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.2" }
failure = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.2", package = "failure_ext" }
language_e2e_tests = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.2" }
state_view = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.2" }
stdlib = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.2" }
types = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.2" }
vm = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.2" }
vm_cache_map = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.2" }
vm_runtime = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.2" }
bytecode_verifier = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.3", package = "solana_libra_bytecode_verifier" }
compiler = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.3", package = "solana_libra_compiler" }
failure = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.3", package = "solana_libra_failure_ext" }
language_e2e_tests = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.3" , package = "solana_libra_language_e2e_tests" }
state_view = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.3", package = "solana_libra_state_view" }
stdlib = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.3", package = "solana_libra_stdlib" }
types = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.3", package = "solana_libra_types" }
vm = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.3", package = "solana_libra_vm" }
vm_cache_map = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.3", package = "solana_libra_vm_cache_map" }
vm_runtime = { git = "https://github.com/solana-labs/libra", tag = "v0.0.0.3", package = "solana_libra_vm_runtime" }
[lib]
crate-type = ["lib"]

File diff suppressed because it is too large Load Diff