forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[language] move crates in diem-tools to diem/diem-move
Closes: aptos-labs#9561
- Loading branch information
1 parent
6b0637d
commit b208105
Showing
100 changed files
with
243 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[package] | ||
name = "diem-validator-interface" | ||
version = "0.1.0" | ||
authors = ["Diem Association <[email protected]>"] | ||
description = "Defines interfaces between the diem nodes and local move infrastructure" | ||
repository = "https://github.com/diem/diem" | ||
homepage = "https://diem.com" | ||
license = "Apache-2.0" | ||
publish = false | ||
edition = "2018" | ||
|
||
[dependencies] | ||
anyhow = "1.0.38" | ||
diem-config = { path = "../../config" } | ||
diem-client = { path = "../../sdk/client" } | ||
diem-types = { path = "../../types" } | ||
diemdb = { path = "../../storage/diemdb" } | ||
diem-workspace-hack = { path = "../../common/workspace-hack" } | ||
storage-interface = { path = "../../storage/storage-interface" } | ||
scratchpad = { path = "../../storage/scratchpad" } | ||
diem-state-view = { path = "../../storage/state-view" } | ||
move-binary-format = { path = "../../language/move-binary-format" } | ||
bcs = "0.1.2" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[package] | ||
name = "diem-e2e-tests-replay" | ||
version = "0.1.0" | ||
authors = ["Diem Association <[email protected]>"] | ||
description = "A tool that reconstructs and replays test cases from the trace dump of E2E tests" | ||
license = "Apache-2.0" | ||
edition = "2018" | ||
publish = false | ||
|
||
[dependencies] | ||
anyhow = "1.0.38" | ||
bcs = "0.1.2" | ||
structopt = "0.3.21" | ||
walkdir = "2.3.1" | ||
|
||
diem-workspace-hack = { path = "../../common/workspace-hack" } | ||
bytecode-interpreter = { path = "../../language/move-prover/interpreter" } | ||
diem-types = { path = "../../types", features = ["fuzzing"] } | ||
diem-framework = { path = "../../language/diem-framework" } | ||
diem-vm = { path = "../../language/diem-vm" } | ||
language-e2e-tests = { path = "../../language/testing-infra/e2e-tests" } | ||
move-binary-format = { path = "../../language/move-binary-format" } | ||
move-core-types = { path = "../../language/move-core/types" } | ||
move-model = { path = "../../language/move-model" } | ||
move-vm-runtime = { path = "../../language/move-vm/runtime" } | ||
move-vm-types = { path = "../../language/move-vm/types" } |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[package] | ||
name = "diem-transaction-replay" | ||
version = "0.1.0" | ||
authors = ["Diem Association <[email protected]>"] | ||
description = "Replay transactions stored on chain" | ||
repository = "https://github.com/diem/diem" | ||
homepage = "https://diem.com" | ||
license = "Apache-2.0" | ||
publish = false | ||
edition = "2018" | ||
|
||
[dependencies] | ||
anyhow = "1.0.38" | ||
structopt = "0.3.21" | ||
hex = "0.4.3" | ||
diem-workspace-hack = { path = "../../common/workspace-hack" } | ||
diem-types = { path = "../../types" } | ||
diem-state-view = { path = "../../storage/state-view" } | ||
diem-validator-interface = { path = "../diem-validator-interface" } | ||
diemdb = { path = "../../storage/diemdb" } | ||
diem-vm = { path = "../../language/diem-vm" } | ||
move-binary-format = { path = "../../language/move-binary-format"} | ||
move-cli = { path = "../../language/tools/move-cli" } | ||
move-vm-types = { path = "../../language/move-vm/types" } | ||
move-core-types = { path = "../../language/move-core/types" } | ||
move-vm-runtime = { path = "../../language/move-vm/runtime" } | ||
move-vm-test-utils = { path = "../../language/move-vm/test-utils" } | ||
diem-resource-viewer = { path = "../diem-resource-viewer" } | ||
diem-framework = { path = "../../language/diem-framework" } | ||
move-lang = { path = "../../language/move-lang" } | ||
bcs = "0.1.2" | ||
difference = "2.0.0" | ||
|
||
[dev-dependencies] | ||
vm-genesis = { path = "../vm-genesis" } | ||
diem-framework-releases = { path = "../../language/diem-framework/DPN/releases" } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[package] | ||
name = "vm-genesis" | ||
version = "0.1.0" | ||
edition = "2018" | ||
authors = ["Diem Association <[email protected]>"] | ||
description = "Diem vm genesis" | ||
repository = "https://github.com/diem/diem" | ||
homepage = "https://diem.com" | ||
license = "Apache-2.0" | ||
publish = false | ||
|
||
[dependencies] | ||
anyhow = "1.0.38" | ||
once_cell = "1.7.2" | ||
rand = "0.8.3" | ||
|
||
bytecode-verifier = { path = "../../language/bytecode-verifier" } | ||
bcs = "0.1.2" | ||
diem-config = { path = "../../config" } | ||
diem-crypto = { path = "../../crypto/crypto" } | ||
diem-state-view = { path = "../../storage/state-view" } | ||
diem-types = { path = "../../types" } | ||
diem-workspace-hack = { path = "../../common/workspace-hack" } | ||
move-bytecode-utils = { path = "../../language/tools/move-bytecode-utils" } | ||
move-core-types = { path = "../../language/move-core/types" } | ||
move-vm-runtime = { path = "../../language/move-vm/runtime"} | ||
move-vm-types = { path = "../../language/move-vm/types" } | ||
diem-framework = { path = "../../language/diem-framework" } | ||
diem-framework-releases = { path = "../../language/diem-framework/DPN/releases" } | ||
diem-transaction-builder = { path = "../../sdk/transaction-builder"} | ||
move-binary-format = { path = "../../language/move-binary-format" } | ||
diem-vm = { path = "../../language/diem-vm" } | ||
|
||
[dev-dependencies] | ||
proptest = "1.0.0" | ||
proptest-derive = "0.3.0" | ||
diem-proptest-helpers = { path = "../../common/proptest-helpers" } | ||
|
||
[features] | ||
default = [] | ||
fuzzing = ["diem-types/fuzzing", "move-vm-types/fuzzing"] |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[package] | ||
name = "diem-writeset-generator" | ||
version = "0.1.0" | ||
authors = ["Diem Association <[email protected]>"] | ||
description = "Generating writesets used for incident management" | ||
repository = "https://github.com/diem/diem" | ||
homepage = "https://diem.com" | ||
license = "Apache-2.0" | ||
publish = false | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
anyhow = "1.0.38" | ||
structopt = "0.3.21" | ||
tempfile = "3.2.0" | ||
handlebars = "3.5.3" | ||
hex = "0.4.3" | ||
serde = { version = "1.0.124", default-features = false } | ||
serde_json = "1.0.64" | ||
once_cell = "1.7.2" | ||
|
||
bytecode-verifier = { path = "../../language/bytecode-verifier" } | ||
diem-workspace-hack = { path = "../../common/workspace-hack" } | ||
diem-crypto-derive = { path = "../../crypto/crypto-derive" } | ||
diem-crypto = { path = "../../crypto/crypto" } | ||
diem-types = { path = "../../types" } | ||
diem-framework-releases = { path = "../../language/diem-framework/DPN/releases" } | ||
diem-framework = { path = "../../language/diem-framework" } | ||
move-lang = { path = "../../language/move-lang" } | ||
bcs = "0.1.2" | ||
diem-state-view = { path = "../../storage/state-view" } | ||
diem-validator-interface = { path = "../diem-validator-interface" } | ||
diem-transaction-replay = { path = "../transaction-replay" } | ||
diemdb = { path = "../../storage/diemdb" } | ||
diem-vm = { path = "../../language/diem-vm" } | ||
move-binary-format = { path = "../../language/move-binary-format"} | ||
move-vm-types = { path = "../../language/move-vm/types" } | ||
move-core-types = { path = "../../language/move-core/types" } | ||
move-vm-runtime = { path = "../../language/move-vm/runtime" } | ||
move-vm-test-utils = { path = "../../language/move-vm/test-utils" } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.