nostr_connect/
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 Connect (NIP46)
6//!
7//! <https://github.com/nostr-protocol/nips/blob/master/46.md>
8
9#![forbid(unsafe_code)]
10#![warn(missing_docs)]
11#![warn(rustdoc::bare_urls)]
12#![warn(clippy::large_futures)]
13
14pub mod client;
15pub mod error;
16pub mod prelude;
17pub mod signer;