blyss_rs/
lib.rs

1//! Rust client for [Blyss](https://blyss.dev).
2//!
3//! Provides interfaces for privately reading data from Blyss buckets.
4//! Also exposes a higher-level API for fetching Merkle proofs.
5//!
6//! Documentation for the Blyss service is at [docs.blyss.dev](https://docs.blyss.dev).
7
8/// Low level functionality for accessing Blyss buckets.
9pub mod api;
10
11/// High level functionality for fetching Merkle proofs from Blyss buckets.
12pub mod proof;
13
14/// Error types for Blyss.
15pub mod error;