[clap-v3-utils] Make `SignerSource::parse` public (#410)

make `SignerSource::parse` public
This commit is contained in:
samkim-crypto 2024-03-26 07:42:31 +09:00 committed by GitHub
parent c7dba30f4f
commit c867522de8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ impl SignerSource {
}
}
pub(crate) fn parse<S: AsRef<str>>(source: S) -> Result<Self, SignerSourceError> {
pub fn parse<S: AsRef<str>>(source: S) -> Result<Self, SignerSourceError> {
let source = source.as_ref();
let source = {
#[cfg(target_family = "windows")]