nostr_blossom/
lib.rs

1// Copyright (c) 2022-2023 Yuki Kishimoto
2// Copyright (c) 2023-2025 Rust Nostr Developers
3// Distributed under the MIT software license
4
5//! This crate implements the Blossom protocol for decentralized content storage and retrieval.
6//!
7//! The Blossom protocol defines a standard for storing and retrieving blobs (binary large objects)
8//! in a decentralized manner, using the Nostr protocol for authorization and discovery.
9//!
10//! <https://github.com/hzrd149/blossom>
11
12#![forbid(unsafe_code)]
13#![warn(missing_docs)]
14#![warn(rustdoc::bare_urls)]
15#![warn(clippy::large_futures)]
16
17pub mod bud01;
18pub mod bud02;
19pub mod client;
20pub mod error;
21pub mod prelude;