Skip to content

Commit

Permalink
use diem with test natives exposed
Browse files Browse the repository at this point in the history
  • Loading branch information
0o-de-lally committed Sep 5, 2024
1 parent 6ed9e46 commit 2b25e1d
Showing 1 changed file with 43 additions and 43 deletions.
86 changes: 43 additions & 43 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,42 +47,42 @@ libra-types = { path = "types" }
libra-txs = { path = "tools/txs" }
libra-wallet = { path = "tools/wallet" }

diem-api-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-debugger = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-db = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-forge = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-transactional-test-harness = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
smoke-test = { package = "smoke-test", git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-api-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-debugger = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-db = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-forge = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-transactional-test-harness = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
smoke-test = { package = "smoke-test", git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }

diem = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-backup-cli = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-build-info = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-db-tool = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-node = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-rest-client = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-sdk = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-config = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-crypto = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-genesis = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-global-constants = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-keygen = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-logger = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-gas = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-vm = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-vm-genesis = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-vm-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-executor = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-executor-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-framework = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-cached-packages = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-github-client = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-release-builder = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-language-e2e-tests = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-push-metrics = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-state-view = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-storage-interface = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem-temppath = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
diem = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-backup-cli = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-build-info = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-db-tool = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-node = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-rest-client = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-sdk = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-config = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-crypto = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-genesis = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-global-constants = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-keygen = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-logger = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-gas = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-vm = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-vm-genesis = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-vm-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-executor = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-executor-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-framework = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-cached-packages = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-github-client = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-release-builder = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-language-e2e-tests = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-push-metrics = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-state-view = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-storage-interface = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
diem-temppath = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }

### External crate dependencies.
# 0L NOTE: most of these are not used. But we leave the entire block here
Expand Down Expand Up @@ -321,14 +321,14 @@ serde_with = "^3"
vergen = { version = "8.3.1", features = ["build", "git", "gitcl"] }

######## MOVE DEPENDENCIES ########
move-binary-format = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
move-core-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
move-command-line-common = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
move-compiler = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
move-model = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
move-vm-test-utils = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
move-vm-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
move-vm-runtime = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" }
move-binary-format = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
move-core-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
move-command-line-common = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
move-compiler = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
move-model = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
move-vm-test-utils = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
move-vm-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }
move-vm-runtime = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "testing-natives-to-prod" }

# uses a profile similar to `cli` in Diem/Cargo.toml
# optimized for performance and size
Expand Down

0 comments on commit 2b25e1d

Please sign in to comment.