iroh-base 1.0.0

base type and utilities for Iroh
Documentation
//! Base types and utilities for Iroh
#![cfg_attr(iroh_docsrs, feature(doc_cfg))]
#![deny(missing_docs, rustdoc::broken_intra_doc_links, unreachable_pub)]
#![cfg_attr(not(test), deny(clippy::unwrap_used))]

#[cfg(feature = "key")]
mod endpoint_addr;
#[cfg(feature = "key")]
mod key;
#[cfg(feature = "relay")]
mod relay_url;

#[cfg(feature = "key")]
pub use self::endpoint_addr::{CustomAddr, EndpointAddr, TransportAddr};
#[cfg(feature = "key")]
pub use self::key::{
    EndpointId, KeyParsingError, PublicKey, SecretKey, Signature, SignatureError,
    SignatureParsingError,
};
#[cfg(feature = "relay")]
pub use self::relay_url::{RelayUrl, RelayUrlParseError};