* Refactor SignerSource to expose DerivationPath to other kinds of signers (#16933)
* One use statement
* Add stdin uri scheme
* Convert parse_signer_source to return Result
* A-Z deps
* Convert Usb data to Locator
* Pull DerivationPath out of Locator
* Wrap SignerSource to share derivation_path
* Review comments
* Check Filepath existence, readability in parse_signer_source
(cherry picked from commit d6f30b7537
)
# Conflicts:
# Cargo.lock
# clap-utils/src/memo.rs
# remote-wallet/src/locator.rs
# sdk/Cargo.toml
* Fix conflicts
* Fix legacy compile test
Co-authored-by: Tyera Eulberg <teulberg@gmail.com>
Co-authored-by: Tyera Eulberg <tyera@solana.com>
31 lines
753 B
TOML
31 lines
753 B
TOML
[package]
|
|
name = "solana-clap-utils"
|
|
version = "1.5.20"
|
|
description = "Solana utilities for the clap"
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
repository = "https://github.com/solana-labs/solana"
|
|
license = "Apache-2.0"
|
|
homepage = "https://solana.com/"
|
|
documentation = "https://docs.rs/solana-clap-utils"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clap = "2.33.0"
|
|
rpassword = "4.0"
|
|
solana-remote-wallet = { path = "../remote-wallet", version = "=1.5.20" }
|
|
solana-sdk = { path = "../sdk", version = "=1.5.20" }
|
|
thiserror = "1.0.21"
|
|
tiny-bip39 = "0.7.0"
|
|
uriparse = "0.6.3"
|
|
url = "2.1.0"
|
|
chrono = "0.4"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1.0"
|
|
|
|
[lib]
|
|
name = "solana_clap_utils"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|