From 02f9246e7189ce2ba0e0d190a9afbcadd7b8240a Mon Sep 17 00:00:00 2001 From: blu3beri Date: Fri, 28 Apr 2023 18:44:49 +0200 Subject: [PATCH] chore: update authors Signed-off-by: blu3beri --- Cargo.toml | 6 +----- crates/cli/src/modules/wallet.rs | 3 +-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d2d51bae..f1a46d13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,11 +4,7 @@ members = ["crates/*", "tests"] [workspace.package] version = "0.1.0" edition = "2021" -authors = [ - "Berend Sliedrecht ", - "Moritz Schlichting ", - "Jean-Louis Leysens ", -] +authors = ["Animo Solutions "] description = "Siera is a toolkit that allows you to interact with a Hyperledger Aries Cloud agent." homepage = "https://siera.animo.id" documentation = "https://docs.siera.animo.id" diff --git a/crates/cli/src/modules/wallet.rs b/crates/cli/src/modules/wallet.rs index a2732ae7..cc00138c 100644 --- a/crates/cli/src/modules/wallet.rs +++ b/crates/cli/src/modules/wallet.rs @@ -49,11 +49,10 @@ pub enum WalletSubcommands { CreateLocalDid { /// The method to be used did or sov #[clap(long, short, help=HelpStrings::WalletCreateMethod, required = true, default_value="did", value_parser=PossibleValuesParser::new(["did", "sov"]))] - method: String, /// The key type e.g. ed25519 or bls12381g2 - #[clap(long, short, help=HelpStrings::WalletListKeyType, required = true, default_value="ed25519",value_parser=PossibleValuesParser::new(["ed25519", "bls12381g2"]))] + #[clap(long, short, help=HelpStrings::WalletListKeyType, required = true, default_value="ed25519",value_parser=PossibleValuesParser::new(["ed25519", "bls12381g2"]))] key_type: String, },