Skip to main content

bsv/services/
mod.rs

1//! Higher-level BSV service clients.
2//!
3//! This module provides typed async clients for BSV overlay network services:
4//! identity lookup, certificate registry, file storage, key-value store,
5//! messaging (BRC-77/78), and SHIP/SLAP overlay infrastructure.
6
7pub mod error;
8pub mod messages;
9
10#[cfg(feature = "network")]
11pub mod overlay_tools;
12
13#[cfg(feature = "network")]
14pub mod kvstore;
15#[cfg(feature = "network")]
16pub mod storage;
17
18#[cfg(feature = "network")]
19pub mod identity;
20
21#[cfg(feature = "network")]
22pub mod registry;
23
24pub use error::ServicesError;