Skip to content

Commit

Permalink
update move to a new revision (#3634)
Browse files Browse the repository at this point in the history
  • Loading branch information
JerryKwan committed Aug 12, 2022
1 parent a184307 commit c61056e
Show file tree
Hide file tree
Showing 19 changed files with 149 additions and 152 deletions.
83 changes: 41 additions & 42 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion abi/decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ anyhow = "1.0.41"
bcs = "0.1"
bcs-ext = {path = "../../commons/bcs_ext"}
hex = "0.4.3"
move-binary-format = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
ordinal = "0.3.1"
schemars = {git = "https://github.com/starcoinorg/schemars", rev = "6972da92f4360e1779168bb3fe0274c521d324e2"}
serde = {version = "1.0.130", features = ["derive", "rc"]}
Expand Down
8 changes: 4 additions & 4 deletions abi/resolver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ version = "1.11.11"

[dependencies]
anyhow = "~1"
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"}
move-model = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
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"}
Expand Down
8 changes: 4 additions & 4 deletions cmd/starcoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ forkable-jellyfish-merkle = {path = "../../commons/forkable-jellyfish-merkle"}
futures = "0.3.12"
hex = {version = "0.4.3", default-features = false}
itertools = "0.10.3"
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"}
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-errmapgen = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
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"}
Expand Down
3 changes: 1 addition & 2 deletions commons/proptest-helpers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ version = "1.11.11"

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

diem-proptest-helpers = { package = "diem-proptest-helpers", git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
proptest = "1.0.0"
proptest-derive = "0.3.0"
6 changes: 3 additions & 3 deletions devtools/x/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ regex = "1.6.0"
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 = "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"}
x = { package = "x", git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
x-core = { package = "x-core", git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
x-lint = { package = "x-lint", git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
6 changes: 3 additions & 3 deletions vm/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ version = "1.11.11"
[dependencies]
anyhow = "1.0.41"
itertools = "0.10.3"
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"}
move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-compiler = { package = "move-compiler", git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
once_cell = "1.13.0"
petgraph = "0.5.1"
rayon = "1.5.1"
Expand Down
8 changes: 4 additions & 4 deletions vm/move-coverage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ colored = "2.0.0"
petgraph = "0.5.1"
serde = {version = "1.0.130", default-features = false}

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"}
move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-bytecode-source-map = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-coverage = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
[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 = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
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 = "3d15607d706d3cc1f03427205444c539def45b89" }
stdlib = { package = "stdlib", path = "../stdlib" }

[features]
default = []
56 changes: 28 additions & 28 deletions vm/move-package-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,34 +35,34 @@ futures = "0.3"
tempfile = "~3"
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 = "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"}
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 = "3d15607d706d3cc1f03427205444c539def45b89" }
move-bytecode-verifier = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-cli = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-compiler = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-core-types = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-coverage = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-disassembler = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-errmapgen = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-package = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-unit-test = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-vm-runtime = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
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
6 changes: 3 additions & 3 deletions vm/move-prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.11.11"

[dependencies]
## move dependencies
move-prover = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-prover = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }

# external dependencies
anyhow = "1.0.41"
Expand All @@ -18,8 +18,8 @@ tempfile = "3.2.0"

[dev-dependencies]
datatest-stable = "0.1.1"
move-command-line-common = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-prover-test-utils = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-prover-test-utils = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
once_cell = "1.13.0"
shell-words = "1.0.0"
tempfile = "3.2"
Expand Down
18 changes: 9 additions & 9 deletions vm/natives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ version = "1.11.11"
arrayref = "0.3"
libsecp256k1 = "0.7.1"
log = "0.4.14"
move-binary-format = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-command-line-common = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-core-types = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-docgen = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-errmapgen = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-prover = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-stdlib = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-vm-runtime = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-vm-types = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-core-types = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-docgen = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-errmapgen = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-prover = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-stdlib = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-vm-runtime = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-vm-types = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
num_enum = "0.5.7"
ripemd160 = "0.9.1"
smallvec = "1.8.1"
Expand Down
2 changes: 1 addition & 1 deletion vm/natives/src/token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ fn test_type_params_formatting() {
),
(
vec![TypeTag::U64, TypeTag::Struct(a_struct)],
"<u64, 0x00000000000000000000000000000000::TestModule::TestStruct<address>>",
"<u64, 0x0::TestModule::TestStruct<address>>",
),
];

Expand Down
6 changes: 3 additions & 3 deletions vm/resource-viewer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ version = "1.11.11"
[dependencies]
anyhow = "1.0.41"
hex = "0.4.3"
move-binary-format = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-core-types = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
serde = {version = "1.0.130", features = ["derive", "rc"]}
move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-core-types = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
serde = { version = "1.0.130", features = ["derive", "rc"] }
serde_json = "1.0"
starcoin-vm-types = {path = "../types"}
39 changes: 19 additions & 20 deletions vm/starcoin-transactional-test-harness/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,24 @@ dashmap = "~5"
either = "~1"
hex = "0.4"
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",
]}
log = {version = "0.4.16"}
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 = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-core-types = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-symbol-pool = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-transactional-test-runner = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
jsonrpc-client-transports = { version = "18", features = [
"http",
"ipc",
"ws",
"arbitrary_precision",
] }
jsonrpc-core-client = { version = "18", features = [
"http",
"ipc",
"ws",
"arbitrary_precision",
] }
log = { version = "0.4.16" }
move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-compiler = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-core-types = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-transactional-test-runner = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
once_cell = "~1"
serde = {version = "1"}
serde_json = {version = "1"}
Expand All @@ -47,7 +46,7 @@ futures = "0.3.12"
jsonrpc-core = {version = "18", features = ["arbitrary_precision"]}
jsonrpc-derive = "18"
jsonrpc-http-server = "18"
move-resource-viewer = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-resource-viewer = {git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89"}
starcoin-abi-decoder = {path = "../../abi/decoder"}
starcoin-accumulator = {package = "starcoin-accumulator", path = "../../commons/accumulator"}
starcoin-chain-api = {path = "../../chain/api"}
Expand Down
6 changes: 3 additions & 3 deletions vm/stdlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ fs_extra = "1.2.0"
include_dir = "0.6.2"
itertools = "0.10.3"
log = "0.4.16"
move-bytecode-verifier = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-compiler = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-prover = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
move-bytecode-verifier = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-compiler = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-prover = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
once_cell = "1.13.0"
serde = {version = "1.0.130", default-features = false}
sha2 = "0.10.2"
Expand Down
4 changes: 2 additions & 2 deletions vm/transaction-builder-generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ serde_yaml = "0.8.26"
textwrap = "0.14.0"

bcs = "0.1.3"
move-core-types = {git = "https://github.com/starcoinorg/move", rev = "95a4d7a4314efb819957c0f5a7bb2607ff3b32f1"}
starcoin-vm-types = {path = "../types"}
move-core-types = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
starcoin-vm-types = { path = "../types" }

[dev-dependencies]
tempfile = "3.2.0"
Expand Down
Loading

0 comments on commit c61056e

Please sign in to comment.