-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Tooling] Combine some tools to a single binary. (#10709)
- Loading branch information
Showing
44 changed files
with
705 additions
and
890 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
[package] | ||
name = "aptos-debugger" | ||
name = "aptos-move-debugger" | ||
version = "0.1.0" | ||
authors = ["Aptos Labs <[email protected]>"] | ||
description = "A tool to replay transactions on chain and to execute transactions locally with remote backend" | ||
repository = "https://github.com/aptos-labs/aptos-core" | ||
homepage = "https://aptoslabs.com" | ||
license = "Apache-2.0" | ||
publish = false | ||
edition = "2021" | ||
default-run = "aptos-debugger" | ||
description = "A tool to replay transactions on chain and to execute transactions locally." | ||
|
||
# Workspace inherited keys | ||
authors = { workspace = true } | ||
edition = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
publish = { workspace = true } | ||
repository = { workspace = true } | ||
rust-version = { workspace = true } | ||
|
||
[dependencies] | ||
anyhow = { workspace = true } | ||
|
@@ -39,6 +41,3 @@ move-vm-test-utils = { workspace = true } | |
regex = { workspace = true } | ||
tokio = { workspace = true } | ||
url = { workspace = true } | ||
|
||
[[bin]] | ||
name = "bcs-txn-decoder" |
Oops, something went wrong.