rdf-model 0.3.4

RDF.rs is a Rust framework for working with RDF knowledge graphs.
docs.rs failed to build rdf-model-0.3.4
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: rdf-model-0.2.3

RDF.rs: RDF for Rust

License Compatibility Package Documentation

RDF.rs is a Rust framework for working with RDF knowledge graphs.

[!TIP] 🚧 We are building in public. This is presently under heavy construction.

[Features] | [Prerequisites] | [Installation] | [Examples] | [Reference] | [Development]

✨ Features

  • 100% pure and safe Rust with minimal dependencies and no bloat.
  • Supports no_std environments from the get-go.
  • Supports opting out of any feature using comprehensive feature flags.
  • Adheres to the Rust API Guidelines in its naming conventions.
  • Cuts red tape: 100% free and unencumbered public domain software.

🛠️ Prerequisites

  • Rust 1.85+ (2024 edition)

⬇️ Installation

Installation via Cargo

cargo add rdf_rs --rename rdf

Installation in Cargo.toml

Enable all default features:

[dependencies]
rdf = { package = "rdf_rs", version = "0.3" }

Enable only specific features:

[dependencies]
rdf = { package = "rdf_rs", version = "0.3", default-features = false, features = ["serde"] }

👉 Examples

Importing the Library

use rdf::{format, model, query, reader, store, stream, vocab, writer};

📚 Reference

docs.rs/rdf_rs

Storage Adapters

Package Crate Docs
rdf-store Package Documentation
rdf-store-mongo Package Documentation
rdf-store-neo4j Package Documentation
rdf-store-oxigraph Package Documentation
rdf-store-postgres Package Documentation
rdf-store-qlever Package Documentation
rdf-store-sqlite Package Documentation
rdf-store-turso Package Documentation
rdf-store-valkey Package Documentation
rdf-store-virtuoso Package Documentation

👨‍💻 Development

git clone https://github.com/rust-rdf/rdf.rs.git

Share on X Share on Reddit Share on Hacker News Share on Facebook Share on LinkedIn