Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "indy-cli-rs"
version = "0.1.0"
authors = ["Hyperledger Aries Contributors <aries@lists.hyperledger.org>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/hyperledger/indy-cli-rs.git"
homepage = "https://github.com/hyperledger-indy/indy-cli-rs.git"
description = """\
This is command line interface for Indy, which provides a distributed-ledger-based foundation for self-sovereign identity."""
readme = "../README.md"
Expand All @@ -24,7 +24,7 @@ dirs = "4.0.0"
dryoc = "0.4.3"
hex = "0.4.3"
indy-utils = "0.5.0"
indy-vdr = { git = "https://github.com/hyperledger/indy-vdr.git" }
indy-vdr = { git = "https://github.com/hyperledger-indy/indy-vdr.git" }
linefeed = "0.6.0"
log = "0.4.17"
log4rs = "1.2.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ It provides the commands to:
* [Troubleshooting](#troubleshooting)

### Installation
1. Go to the [Github Releases](https://github.com/hyperledger/indy-cli-rs/releases) page.
1. Go to the [Github Releases](https://github.com/hyperledger-indy/indy-cli-rs/releases) page.
1. Download archive with the last version of CLI depending on your system platform.
1. Unzip archive to the directory where you want to save CLI.
1. After unzip you will be able to execute binary file.
Expand Down
4 changes: 2 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Section: devel
Priority: optional
Maintainer: Hyperledger Aries Contributors <aries@lists.hyperledger.org>
Standards-Version: 1.0.0
Vcs-Git: https://github.com/hyperledger/indy-cli-rs.git/
Vcs-Browser: https://github.com/hyperledger/indy-cli-rs.git/
Vcs-Git: https://github.com/hyperledger-indy/indy-cli-rs.git/
Vcs-Browser: https://github.com/hyperledger-indy/indy-cli-rs.git/

Package: indy-cli-rs
Architecture: amd64
Expand Down
2 changes: 1 addition & 1 deletion samples/batch-script
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This is a batch script demonstration mostly used operations and flows.
# Requires an Indy Ledger yo be started: https://github.com/hyperledger/indy-vdr#connecting-to-a-ledger
# Requires an Indy Ledger yo be started: https://github.com/hyperledger-indy/indy-vdr#connecting-to-a-ledger
# Scenario:
# 1. Create Trustee Wallet and DID
# 2. Create Endorser Wallet and DID
Expand Down
4 changes: 2 additions & 2 deletions src/commands/common/about.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ pub mod about_command {
trace!("execute >> _ctx: params: {:?}", _params);

println_succ!(
"Hyperledger Aries Indy CLI (https://github.com/hyperledger/indy-cli-rs.git)"
"Hyperledger Indy CLI (https://github.com/hyperledger-indy/indy-cli-rs.git)"
);
println!();
println_succ!(
"This is CLI tool for Hyperledger Indy (https://www.hyperledger.org/projects),"
);
println_succ!("which provides a distributed-ledger-based foundation for");
println_succ!("self-sovereign identity (https://sovrin.org/).");
println_succ!("self-sovereign identity.");
println!();
println_succ!("Version: {}", env!("CARGO_PKG_VERSION"));
println_succ!("Apache License Version 2.0");
Expand Down
Loading