Skip to main content

nostr_gossip_sqlite/
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//! Nostr Gossip SQLite store.
6
7#![forbid(unsafe_code)]
8#![warn(missing_docs)]
9#![warn(rustdoc::bare_urls)]
10#![warn(clippy::large_futures)]
11
12mod constant;
13pub mod error;
14mod migration;
15mod model;
16mod pool;
17pub mod prelude;
18pub mod store;