rdf_vocabularies 0.2.0

This crate is a distribution of few most commonly used RDF vocabularies. It also provides sophia terms for each vocabulary's terminology.
docs.rs failed to build rdf_vocabularies-0.2.0
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_vocabularies-0.1.8

rdf_vocabularies

This crate is a distribution of few most commonly used RDF vocabularies. It also provides sophia terms for each vocabulary's terminology.

For each vocabulary with prefix vocab_prefix, it provides a module rdf_vocabularies::ns::{vocab_prefix}, that provides sophia terms for entities defined in that vocab's namespace. These modules are behind cargo features `ns-{vocab_prefix}respectively for each vocab. This way you can include only required vocabularies.

Please check documentation for included vocabularies, and their terms. These are generated from their ontologies, and also includes doc-comments for quick reference.

Usage

Include the crate in your project dependencies, with features corresponding to required ontologies

[dependencies]
# includes namespaces for vocabularies `rdf`, `foaf`, `solid`.
rdf_vocabularies = { version = "0.2.0", features=["ns-rdf", "ns-foaf", "ns-solid"] }

And then use them.

use rdf_vocabularies::{ns::{rdf, foaf, solid}};
use sophia_api::prelude::*;

assert!(Term::eq(&foaf::Agent, &Iri::new_unchecked("http://xmlns.com/foaf/0.1/Agent")));
assert!(Term::eq(&rdf::subject, &Iri::new_unchecked("http://www.w3.org/1999/02/22-rdf-syntax-ns#subject")));

License: MIT OR Apache-2.0