rdf-store-postgres 0.3.4

A PostgreSQL storage adapter for RDF.rs knowledge graphs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// This is free and unencumbered software released into the public domain.

use rdf_store_postgres::PostgresStore;

#[tokio::main]
async fn main() -> Result<(), Box<dyn core::error::Error>> {
    let store = PostgresStore::open("postgres://postgres@localhost:5432").await?;
    eprintln!("{:?}", store);

    Ok(()) // TODO
}