Skip to main content

rdf_store_postgres/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3//! A PostgreSQL storage adapter for RDF.rs, a Rust framework for RDF
4//! knowledge graphs.
5//!
6//! # Examples
7//!
8//! ```rust
9//! use rdf_store_postgres::{PostgresStore, PostgresTransaction};
10//! ```
11
12#![no_std]
13#![deny(unsafe_code)]
14#![allow(unused_imports)]
15
16extern crate alloc;
17
18#[cfg(feature = "std")]
19extern crate std;
20
21pub use rdf_store::{ReadTransaction, Store, StoreOptions, WriteTransaction};
22
23mod error;
24pub use error::*;
25
26mod schema;
27pub use schema::*;
28
29mod store;
30pub use store::*;
31
32mod transaction;
33pub use transaction::*;