hubert 0.5.0

Secure distributed substrate for multiparty transactions using write-once key-value storage with ARID-based addressing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// IPFS-specific errors.
#[derive(Debug, thiserror::Error)]
pub enum Error {
    #[error("Envelope size {size} exceeds practical limit")]
    EnvelopeTooLarge { size: usize },

    #[error("IPFS daemon error: {0}")]
    DaemonError(#[from] ipfs_api_backend_hyper::Error),

    #[error("Operation timed out")]
    Timeout,

    #[error("Unexpected IPNS path format: {0}")]
    UnexpectedIpnsPathFormat(String),
}