rdf_rs

Crates.iordf_rs
lib.rsrdf_rs
version0.2.2
created_at2024-12-04 21:08:26.291797+00
updated_at2025-05-06 19:57:14.597043+00
descriptionRDF.rs is a Rust framework for working with RDF knowledge graphs.
homepagehttps://github.com/rust-rdf
repositoryhttps://github.com/rust-rdf/rdf.rs
max_upload_size
id1472489
size23,939
Arto Bendiken (artob)

documentation

README

RDF.rs: RDF for Rust

License Compatibility Package Documentation

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

🚧 This is presently under heavy construction.

✨ 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.
  • 100% free and unencumbered public domain software.

🛠️ Prerequisites

⬇️ Installation

Installation via Cargo

cargo add rdf_rs --rename rdf

Installation in Cargo.toml (with all features enabled)

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

Installation in Cargo.toml (with only specific features enabled)

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

👉 Examples

Importing the library

use rdf::*;

📚 Reference

https://docs.rs/rdf_rs/

👨‍💻 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

Commit count: 55

cargo fmt