forked from MystenLabs/sui
-
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.
Unify sui, wallet, key-tool, sui-move binaries (MystenLabs#2786)
* * unified sui, wallet, key-tool, sui-move binaries * moved benchmark bins to sui-benchmark crate * crate dependencies clean up * name changes * update wallet.md some minor refactoring * update wallet -> Sui CLI client to avoid confusion with the new wallet plugin * rename wallet.md to cli-client.md * minor fixes * revert accidental checkin * fixup after rebase * Make small edits directly to renamed cli-client file * Make small edits directly to install doc * Fix typo in Chapter 3 - Immutable Objects * Lowercase "client" for consistency * Qualify client command with sui * Capitalize Sui client, add fullnode ref * fix docker file Co-authored-by: Clay-Mysten <[email protected]>
- Loading branch information
1 parent
5f8b1e6
commit 4130560
Showing
62 changed files
with
2,690 additions
and
2,105 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[package] | ||
name = "sui-benchmark" | ||
version = "0.0.0" | ||
authors = ["Mysten Labs <[email protected]>"] | ||
license = "Apache-2.0" | ||
publish = false | ||
edition = "2021" | ||
|
||
[dependencies] | ||
rayon = "1.5.3" | ||
anyhow = { version = "1.0.57", features = ["backtrace"] } | ||
futures = "0.3.21" | ||
serde = { version = "1.0.137", features = ["derive"] } | ||
serde_json = "1.0.80" | ||
tempfile = "3.3.0" | ||
tokio = { version = "1.18.2", features = ["full"] } | ||
strum = "0.24.0" | ||
strum_macros = "0.24.0" | ||
num_cpus = "1.13.1" | ||
rocksdb = "0.18.0" | ||
serde_with = { version = "1.14.0", features = ["hex"] } | ||
tracing = "0.1.34" | ||
tracing-subscriber = { version = "0.3.11", features = ["time", "registry", "env-filter"] } | ||
clap = { version = "3.1.17", features = ["derive"] } | ||
prometheus = "0.13.1" | ||
multiaddr = "0.14.0" | ||
|
||
bcs = "0.1.3" | ||
sui-core = { path = "../sui-core" } | ||
sui-config = { path = "../sui-config" } | ||
sui-types = { path = "../sui-types" } | ||
|
||
move-core-types = { git = "https://github.com/move-language/move", rev = "ae62d5f1955a9b92c3ddd31d3cc4467f9aff76ae", features = ["address20"] } | ||
narwhal-node = { git = "https://github.com/MystenLabs/narwhal", rev = "05fa85552c49f0775a47d72c37074c9ca1754900", package = "node" } | ||
|
||
workspace-hack = { path = "../workspace-hack"} | ||
|
||
[features] | ||
benchmark = ["narwhal-node/benchmark"] |
File renamed without changes.
3 changes: 1 addition & 2 deletions
3
crates/sui/src/benchmark/bench_types.rs → ...ui-benchmark/src/benchmark/bench_types.rs
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.
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
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,4 @@ | ||
// Copyright (c) 2022, Mysten Labs, Inc. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
pub mod benchmark; |
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
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.