27 releases

0.1.53 Nov 13, 2024
0.1.35 Oct 25, 2024
0.1.5 Jul 30, 2024
0.0.10 Jan 29, 2024
0.0.3 Oct 30, 2023

#2177 in Database interfaces

Download history 45/week @ 2024-09-02 62/week @ 2024-09-09 304/week @ 2024-09-16 159/week @ 2024-09-23 71/week @ 2024-09-30 47/week @ 2024-10-07 51/week @ 2024-10-14 513/week @ 2024-10-21 244/week @ 2024-10-28 62/week @ 2024-11-04 171/week @ 2024-11-11 45/week @ 2024-11-18 40/week @ 2024-11-25 52/week @ 2024-12-02 116/week @ 2024-12-09 22/week @ 2024-12-16

241 downloads per month
Used in 21 crates (19 directly)

MIT/Apache

46KB
958 lines

prefixmap

This crate contains an implementation of prefixmaps in Rust. The prefixmaps are used in RDF.


lib.rs:

Prefix map implementation

Implements prefix maps, which are used in Turtle and ShEx

A prefix map is a list of alias declarations associated with IRIs

prefix schema: <http://schema.org/>
prefix :       <http://example.org/>

Example


let schema_iri  = IriS::from_str("http://schema.org/")?;
let example_iri = IriS::from_str("http://example.org/")?;
let mut pm = PrefixMap::new();
pm.insert("schema", &schema_iri);
pm.insert("", &example_iri);

Dependencies

~6–17MB
~224K SLoC