2f6617daac
* Move the functionality to issue credentials from the credential binary and connect it with nym-cli * finished CLI part, trying to fit SDK part * finished Rust SDK * fix: cleanup * linting * linting * linting * remove one layer of coconut in nym-cli * linting * Fixes based on PR comments * formatting * fixes based on PR comments * formatting * fixing clippy errors * fixed post-rebasing issues and converted the lib into shared dep for other binaries * removed credentials client in favour of moving the functionality to nym-cli * removed redundant 'issue_credential' example (it did the same thing as 'bandwdith') * removed credentials client from build server * made the coconut cli also accept nym-api configs * fixed support for socks5 and NR --------- Co-authored-by: Jędrzej Stuczyński <jedrzej.stuczynski@gmail.com>
32 lines
919 B
Rust
32 lines
919 B
Rust
// Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use nym_credential_storage::error::StorageError;
|
|
use nym_credentials::error::Error as CredentialError;
|
|
use nym_validator_client::nyxd::error::NyxdError;
|
|
use std::num::ParseIntError;
|
|
use thiserror::Error;
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum Error {
|
|
#[error(transparent)]
|
|
IOError(#[from] std::io::Error),
|
|
|
|
#[error(transparent)]
|
|
BandwidthControllerError(#[from] nym_bandwidth_controller::error::BandwidthControllerError),
|
|
|
|
#[error(transparent)]
|
|
Nyxd(#[from] NyxdError),
|
|
|
|
#[error(transparent)]
|
|
Credential(#[from] CredentialError),
|
|
|
|
#[error("Could not use shared storage: {0}")]
|
|
SharedStorageError(#[from] StorageError),
|
|
|
|
#[error("failed to parse credential value: {0}")]
|
|
MalformedCredentialValue(#[from] ParseIntError),
|
|
}
|