| Crates.io | rdfkit |
| lib.rs | rdfkit |
| version | 0.0.1 |
| created_at | 2025-07-14 05:56:40.722474+00 |
| updated_at | 2025-07-14 05:56:40.722474+00 |
| description | A lightweight, modular toolkit for working with RDF data in Rust. Includes helpers for IRIs, literals, triples, prefixes, and graphs. |
| homepage | https://github.com/rdfkit/rdfkit |
| repository | https://github.com/rdfkit/rdfkit |
| max_upload_size | |
| id | 1751186 |
| size | 6,020 |
rdfkit is a lightweight utility toolkit for working with RDF data in Rust. It provides ergonomic, modular helpers for manipulating RDF terms, IRIs, triples, graphs, prefixes, and more — with no heavy triplestore dependencies.
sophia, oxigraph, or standalone# Cargo.toml
[dependencies]
rdfkit = "0.1"
use rdfkit::term::*;
use rdfkit::triple::*;
let subject = iri("http://example.org/alice");
let predicate = iri("http://xmlns.com/foaf/0.1/name");
let object = literal("Alice");
let triple = Triple::new(subject, predicate, object);
println!("{:?}", triple);
This project is dual-licensed under either: