nostralink 0.2.1

Linked data library for nostr
Documentation
//! Oxigraph store for nostr events
//!
//! See [`manager::RdfEventsStore`]
//!
//! ```
//! use nostralink::prelude::*;
//! use std::path::PathBuf;
//!
//! let store = RdfEventsStore::open(PathBuf::from("rdf_store"))
//!     .expect("Failed to open store");
//! ```

pub mod admit_policies;
pub mod bookmarks;
pub mod channel;
pub mod event_state;
pub mod following;
pub mod interstore;
pub mod manager;
pub mod mute;
#[cfg(feature = "nostrdb")]
pub mod nostrdb;
#[doc(hidden)]
mod prelude;
mod query;
#[doc(hidden)]
mod queue;
#[doc(hidden)]
pub mod rdfcell;
pub mod relays;
pub mod result_set;
pub mod util;
#[allow(non_camel_case_types)]
pub mod vars;