Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[mpm] Integration test support package and deploy command #3631

Merged
merged 3 commits into from
Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 44 additions & 41 deletions Cargo.lock

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions abi/decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ version = "1.11.11"
[dependencies]
anyhow = "1.0.41"
bcs = "0.1"
bcs-ext = { path = "../../commons/bcs_ext" }
bcs-ext = {path = "../../commons/bcs_ext"}
hex = "0.4.3"
move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-binary-format = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
ordinal = "0.3.1"
schemars = { git = "https://github.com/starcoinorg/schemars", rev = "6972da92f4360e1779168bb3fe0274c521d324e2" }
serde = { version = "1.0.130", features = ["derive", "rc"] }
schemars = {git = "https://github.com/starcoinorg/schemars", rev = "6972da92f4360e1779168bb3fe0274c521d324e2"}
serde = {version = "1.0.130", features = ["derive", "rc"]}
serde_bytes = "0.11"
serde_json = "1.0"
starcoin-abi-resolver = { path = "../resolver" }
starcoin-abi-types = { path = "../types" }
starcoin-resource-viewer = { path = "../../vm/resource-viewer" }
starcoin-vm-types = { path = "../../vm/types" }
starcoin-abi-resolver = {path = "../resolver"}
starcoin-abi-types = {path = "../types"}
starcoin-resource-viewer = {path = "../../vm/resource-viewer"}
starcoin-vm-types = {path = "../../vm/types"}
12 changes: 6 additions & 6 deletions abi/resolver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ version = "1.11.11"

[dependencies]
anyhow = "~1"
move-model = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
starcoin-abi-types = { path = "../types" }
starcoin-resource-viewer = { path = "../../vm/resource-viewer" }
starcoin-vm-types = { path = "../../vm/types" }
move-model = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
starcoin-abi-types = {path = "../types"}
starcoin-resource-viewer = {path = "../../vm/resource-viewer"}
starcoin-vm-types = {path = "../../vm/types"}
[dev-dependencies]
serde_json = "1"
stdlib = { path = "../../vm/stdlib" }
test-helper = { path = "../../test-helper" }
stdlib = {path = "../../vm/stdlib"}
test-helper = {path = "../../test-helper"}
90 changes: 45 additions & 45 deletions cmd/starcoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,57 +8,57 @@ version = "1.11.11"

[dependencies]
anyhow = "1.0.41"
bcs-ext = { package = "bcs-ext", path = "../../commons/bcs_ext" }
clap = { version = "3", features = ["derive"] }
bcs-ext = {package = "bcs-ext", path = "../../commons/bcs_ext"}
clap = {version = "3", features = ["derive"]}
crossbeam-channel = "0.5.6"
forkable-jellyfish-merkle = { path = "../../commons/forkable-jellyfish-merkle" }
forkable-jellyfish-merkle = {path = "../../commons/forkable-jellyfish-merkle"}
futures = "0.3.12"
hex = { version = "0.4.3", default-features = false }
hex = {version = "0.4.3", default-features = false}
itertools = "0.10.3"
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-errmapgen = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
network-api = { path = "../../network/api", package = "network-api" }
network-p2p-types = { path = "../../network-p2p/types" }
move-command-line-common = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-errmapgen = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
network-api = {path = "../../network/api", package = "network-api"}
network-p2p-types = {path = "../../network-p2p/types"}
rand = "0.8.5"
scmd = { path = "../../commons/scmd" }
serde = { version = "1.0.130" }
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
starcoin-abi-decoder = { path = "../../abi/decoder" }
starcoin-abi-resolver = { path = "../../abi/resolver" }
starcoin-abi-types = { path = "../../abi/types" }
starcoin-account-api = { path = "../../account/api" }
starcoin-account-provider = { path = "../../account/provider" }
starcoin-chain-api = { path = "../../chain/api" }
starcoin-config = { path = "../../config" }
starcoin-consensus = { path = "../../consensus" }
starcoin-crypto = { git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc" }
starcoin-dev = { path = "../../vm/dev" }
starcoin-executor = { path = "../../executor" }
starcoin-genesis = { path = "../../genesis" }
starcoin-logger = { path = "../../commons/logger" }
starcoin-move-compiler = { path = "../../vm/compiler" }
starcoin-move-explain = { path = "../../vm/move-explain" }
starcoin-network-rpc-api = { path = "../../network-rpc/api" }
starcoin-node = { path = "../../node" }
starcoin-node-api = { path = "../../node/api" }
starcoin-resource-viewer = { path = "../../vm/resource-viewer" }
starcoin-rpc-api = { path = "../../rpc/api" }
starcoin-rpc-client = { path = "../../rpc/client" }
starcoin-service-registry = { path = "../../commons/service-registry" }
starcoin-state-api = { path = "../../state/api" }
starcoin-sync-api = { path = "../../sync/api" }
starcoin-transaction-builder = { path = "../../vm/transaction-builder" }
starcoin-txpool-api = { path = "../../txpool/api" }
starcoin-types = { path = "../../types" }
starcoin-vm-runtime = { path = "../../vm/vm-runtime" }
starcoin-vm-types = { path = "../../vm/types" }
stdlib = { path = "../../vm/stdlib" }
tokio = { version = "^1", features = ["full"] }
vm-status-translator = { path = "../../vm/vm-status-translator" }
scmd = {path = "../../commons/scmd"}
serde = {version = "1.0.130"}
serde_json = {version = "1.0", features = ["arbitrary_precision"]}
starcoin-abi-decoder = {path = "../../abi/decoder"}
starcoin-abi-resolver = {path = "../../abi/resolver"}
starcoin-abi-types = {path = "../../abi/types"}
starcoin-account-api = {path = "../../account/api"}
starcoin-account-provider = {path = "../../account/provider"}
starcoin-chain-api = {path = "../../chain/api"}
starcoin-config = {path = "../../config"}
starcoin-consensus = {path = "../../consensus"}
starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
starcoin-dev = {path = "../../vm/dev"}
starcoin-executor = {path = "../../executor"}
starcoin-genesis = {path = "../../genesis"}
starcoin-logger = {path = "../../commons/logger"}
starcoin-move-compiler = {path = "../../vm/compiler"}
starcoin-move-explain = {path = "../../vm/move-explain"}
starcoin-network-rpc-api = {path = "../../network-rpc/api"}
starcoin-node = {path = "../../node"}
starcoin-node-api = {path = "../../node/api"}
starcoin-resource-viewer = {path = "../../vm/resource-viewer"}
starcoin-rpc-api = {path = "../../rpc/api"}
starcoin-rpc-client = {path = "../../rpc/client"}
starcoin-service-registry = {path = "../../commons/service-registry"}
starcoin-state-api = {path = "../../state/api"}
starcoin-sync-api = {path = "../../sync/api"}
starcoin-transaction-builder = {path = "../../vm/transaction-builder"}
starcoin-txpool-api = {path = "../../txpool/api"}
starcoin-types = {path = "../../types"}
starcoin-vm-runtime = {path = "../../vm/vm-runtime"}
starcoin-vm-types = {path = "../../vm/types"}
stdlib = {path = "../../vm/stdlib"}
tokio = {version = "^1", features = ["full"]}
vm-status-translator = {path = "../../vm/vm-status-translator"}

[dev-dependencies]
stest = { path = "../../commons/stest" }
test-helper = { path = "../../test-helper" }
stest = {path = "../../commons/stest"}
test-helper = {path = "../../test-helper"}

[[bin]]
name = "starcoin"
Expand Down
2 changes: 1 addition & 1 deletion commons/proptest-helpers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.11.11"

[dependencies]
crossbeam = "0.7.3"
diem-proptest-helpers = { package = "diem-proptest-helpers", git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
diem-proptest-helpers = {package = "diem-proptest-helpers", git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}

proptest = "1.0.0"
proptest-derive = "0.3.0"
14 changes: 7 additions & 7 deletions devtools/x/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ version = "1.11.11"

[dependencies]
anyhow = "1.0.41"
camino = { version = "1" }
camino = {version = "1"}
chrono = "0.4.19"
clap = { version = "3", features = ["derive"] }
clap = {version = "3", features = ["derive"]}
colored-diff = "0.2.2"
determinator = "0.4.0"
env_logger = "0.9.0"
globset = "0.4.8"
guppy = { version = "0.9.0", features = ["summaries"] }
guppy = {version = "0.9.0", features = ["summaries"]}
indexmap = "1.6.2"
indoc = "1.0.3"
log = "0.4.16"
rayon = "1.5.1"
regex = "1.6.0"
serde = { version = "1.0.130", features = ["derive"] }
serde = {version = "1.0.130", features = ["derive"]}
serde_json = "1.0.61"
toml = "0.5.9"
x = { package = "x", git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
x-core = { package = "x-core", git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
x-lint = { package = "x-lint", git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
x = {package = "x", git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
x-core = {package = "x-core", git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
x-lint = {package = "x-lint", git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
22 changes: 11 additions & 11 deletions vm/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ version = "1.11.11"
[dependencies]
anyhow = "1.0.41"
itertools = "0.10.3"
move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-compiler = { package = "move-compiler", git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-binary-format = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-command-line-common = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-compiler = {package = "move-compiler", git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
once_cell = "1.13.0"
petgraph = "0.5.1"
rayon = "1.5.1"
regex = { version = "1.6.0", default-features = false, features = [
"std",
"perf",
] }
starcoin-crypto = { git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc" }
starcoin-logger = { path = "../../commons/logger" }
starcoin-vm-types = { path = "../types" }
regex = {version = "1.6.0", default-features = false, features = [
"std",
"perf",
]}
starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
starcoin-logger = {path = "../../commons/logger"}
starcoin-vm-types = {path = "../types"}
tempfile = "3.1.0"
walkdir = "2.3"

[dev-dependencies]
stest = { path = "../../commons/stest" }
stest = {path = "../../commons/stest"}
18 changes: 9 additions & 9 deletions vm/move-coverage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = [
"Diem Association <opensource@diem.org>",
"Starcoin Core Dev <dev@starcoin.org>",
"Diem Association <opensource@diem.org>",
"Starcoin Core Dev <dev@starcoin.org>",
]
description = "starcoin Move VM code coverage"
edition = "2021"
Expand All @@ -13,15 +13,15 @@ version = "1.11.11"
[dependencies]
anyhow = "1.0.41"
bcs = "0.1.2"
clap = { version = "3", features = ["derive"] }
codespan = { version = "0.8.0", features = ["serialization"] }
clap = {version = "3", features = ["derive"]}
codespan = {version = "0.8.0", features = ["serialization"]}
colored = "2.0.0"
petgraph = "0.5.1"
serde = { version = "1.0.130", default-features = false }
serde = {version = "1.0.130", default-features = false}

move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-bytecode-source-map = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-coverage = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-binary-format = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-bytecode-source-map = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-command-line-common = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-coverage = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
[features]
default = []
8 changes: 4 additions & 4 deletions vm/move-explain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ repository = "https://github.com/diem/diem"
version = "1.11.11"

[dependencies]
bcs-ext = { package = "bcs-ext", path = "../../commons/bcs_ext" }
clap = { version = "3", features = ["derive"] }
move-core-types = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
stdlib = { package = "stdlib", path = "../stdlib" }
bcs-ext = {package = "bcs-ext", path = "../../commons/bcs_ext"}
clap = {version = "3", features = ["derive"]}
move-core-types = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
stdlib = {package = "stdlib", path = "../stdlib"}

[features]
default = []
86 changes: 43 additions & 43 deletions vm/move-package-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,57 +12,57 @@ version = "1.11.11"
[dependencies]
anyhow = "1.0.41"
bcs = "0.1.2"
clap = { version = "3", features = ["derive"] }
clap = {version = "3", features = ["derive"]}
difference = "2.0.0"
include_dir = { version = "0.6.2", features = ["search"] }
include_dir = {version = "0.6.2", features = ["search"]}
itertools = "0.10"
jsonrpc-client-transports = { version = "18", features = [
"http",
"ipc",
"ws",
"arbitrary_precision",
] }
jsonrpc-core-client = { version = "18", features = [
"http",
"ipc",
"ws",
"arbitrary_precision",
] }
jsonrpc-client-transports = {version = "18", features = [
"http",
"ipc",
"ws",
"arbitrary_precision",
]}
jsonrpc-core-client = {version = "18", features = [
"http",
"ipc",
"ws",
"arbitrary_precision",
]}
once_cell = "1.13.0"
walkdir = "2.3.1"

futures = "0.3"
tempfile = "~3"
tokio = { version = "^1", features = ["full"] }
tokio = {version = "^1", features = ["full"]}

bcs-ext = { package = "bcs-ext", path = "../../commons/bcs_ext" }
datatest-stable = { git = "https://github.com/starcoinorg/diem-devtools", branch = "feature/pub-test-opts" }
move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-bytecode-verifier = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-cli = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-compiler = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-core-types = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-coverage = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-disassembler = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-errmapgen = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-package = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-unit-test = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
move-vm-runtime = { git = "https://github.com/starcoinorg/move", rev = "ed32208eb82e87000fe2d163d2b6df3851d2b9c1" }
resource-viewer = { path = "../resource-viewer", package = "starcoin-resource-viewer" }
starcoin-account-provider = { path = "../../account/provider" }
starcoin-cmd = { path = "../../cmd/starcoin" }
starcoin-config = { path = "../../config" }
starcoin-crypto = { git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc" }
starcoin-logger = { path = "../../commons/logger" }
starcoin-move-compiler = { path = "../compiler" }
starcoin-rpc-api = { path = "../../rpc/api" }
starcoin-rpc-client = { path = "../../rpc/client" }
starcoin-transactional-test-harness = { path = "../starcoin-transactional-test-harness" }
starcoin-types = { path = "../../types" }
starcoin-vm-runtime = { path = "../vm-runtime", features = ["testing"] }
starcoin-vm-types = { path = "../../vm/types" }
stdlib = { path = "../stdlib" }
bcs-ext = {package = "bcs-ext", path = "../../commons/bcs_ext"}
datatest-stable = {git = "https://github.com/starcoinorg/diem-devtools", branch = "feature/pub-test-opts"}
move-binary-format = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-bytecode-verifier = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-cli = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-command-line-common = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-compiler = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-core-types = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-coverage = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-disassembler = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-errmapgen = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-package = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-unit-test = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-vm-runtime = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
resource-viewer = {path = "../resource-viewer", package = "starcoin-resource-viewer"}
starcoin-account-provider = {path = "../../account/provider"}
starcoin-cmd = {path = "../../cmd/starcoin"}
starcoin-config = {path = "../../config"}
starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
starcoin-logger = {path = "../../commons/logger"}
starcoin-move-compiler = {path = "../compiler"}
starcoin-rpc-api = {path = "../../rpc/api"}
starcoin-rpc-client = {path = "../../rpc/client"}
starcoin-transactional-test-harness = {path = "../starcoin-transactional-test-harness"}
starcoin-types = {path = "../../types"}
starcoin-vm-runtime = {path = "../vm-runtime", features = ["testing"]}
starcoin-vm-types = {path = "../../vm/types"}
stdlib = {path = "../stdlib"}

[dev-dependencies]

Expand Down
Loading