2 releases

0.1.2 Mar 25, 2024
0.1.1 Mar 25, 2024
0.1.0 Mar 22, 2024

#1742 in Encoding

Download history 2294/week @ 2026-02-21 2715/week @ 2026-02-28 3148/week @ 2026-03-07 3254/week @ 2026-03-14 3351/week @ 2026-03-21 2989/week @ 2026-03-28 2641/week @ 2026-04-04 3311/week @ 2026-04-11 3387/week @ 2026-04-18 3856/week @ 2026-04-25 3703/week @ 2026-05-02 3105/week @ 2026-05-09 3972/week @ 2026-05-16 2676/week @ 2026-05-23 4479/week @ 2026-05-30 4504/week @ 2026-06-06

16,212 downloads per month
Used in 97 crates (23 directly)

MIT/Apache

115KB
3.5K SLoC

Linked-Data serialization and deserialization primitives

GitHub Actions Workflow Status Crate informations Crates.io MSRV License Documentation

This library provides primitive traits to serialize and deserialize Linked-Data types. It is shipped with derive macros (using the derive feature) that can automatically implement those primitives for you.

Example

use iref::IriBuf;
use static_iref::iri;

#[derive(linked_data::Serialize, linked_data::Deserialize)]
#[ld(prefix("ex" = "http://example.org/"))]
struct Foo {
  #[ld(id)]
  id: IriBuf,

  #[ld("ex:name")]
  name: String,

  #[ld("ex:email")]
  email: String
}

let value = Foo {
  id: iri!("http://example.org/JohnSmith").to_owned(),
  name: "John Smith".to_owned(),
  email: "john.smith@example.org".to_owned()
};

let quads = linked_data::to_quads(rdf_types::generator::Blank::new(), &value)
  .expect("RDF serialization failed");

for quad in quads {
  use rdf_types::RdfDisplay;
  println!("{} .", quad.rdf_display())
}

This should print the following:

<http://example.org/JohnSmith> <http://example.org/name> "John Smith" .
<http://example.org/JohnSmith> <http://example.org/email> "john.smith@example.org" .

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~13MB
~266K SLoC