-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* [refactor]: bump `clap`, scaffold `swarm` subcommand Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: transform `algorithm` to `ValueEnum` Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [feature]: implement basic flow Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [chore]: clear dead code Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: safer paths manipulations Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [fix]: sort generated services Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [test]: update snapshot Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [fix]: skip empty command serialisation; chores Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: define consts Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: pass workspace check; lints Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: chores Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [feat]: impl basic UI Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [fix]: fix shallow git clone Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [chore]: update ui Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: simplify resolution reporting Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: doc comments, naming, etc Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: move `swarm` mod Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: chores; update doc comments Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [fix]: fix config path in docker image Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [fix]: clippy lints Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [fix]: specify all trusted peers; set genesis key pair only for the genesis peer Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [chore]: add fixme Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: chores Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [test]: fix `kagami` and `iroha_config_base` tests Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [fix]: use `SocketAddr` Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: apply lints Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: allow any docker image; rename args Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: fix lints Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * Apply suggestions from code review Co-authored-by: Ilia Churin <churin.ilya@gmail.com> Signed-off-by: 0x009922 <a.marcius26@gmail.com> * [chore]: remove extra doc Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [chore]: remove inaccurate comment Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: use `.dir()` Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: derive `Display` for `AlgorithmArg` Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: use `Error::FieldDeserialization` Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: apply lints Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: move secp256k1 seed len check to `iroha_crypto` Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [refactor]: expand `swarm::key_gen` module Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [chore]: fix format Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> * [chore]: capitalise error messages Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> --------- Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com> Signed-off-by: 0x009922 <a.marcius26@gmail.com> Co-authored-by: Ilia Churin <churin.ilya@gmail.com>
- Loading branch information
Showing
17 changed files
with
2,149 additions
and
429 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,5 @@ serde_json = "1.0.91" | |
json5 = "0.4.1" | ||
thiserror = "1.0.38" | ||
crossbeam = "0.8.2" | ||
eyre = "0.6.8" | ||
|
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.