//! This crate is a Rust implementation of the
//! [JSON-LD](https://www.w3.org/TR/json-ld/)
//! data interchange format.
//!
//! [Linked Data (LD)](https://www.w3.org/standards/semanticweb/data)
//! is a [World Wide Web Consortium (W3C)](https://www.w3.org/)
//! initiative built upon standard Web technologies to create an
//! interrelated network of datasets across the Web.
//! The [JavaScript Object Notation (JSON)](https://tools.ietf.org/html/rfc7159) is
//! a widely used, simple, unstructured data serialization format to describe
//! data objects in a human readable way.
//! JSON-LD brings these two technologies together, adding semantics to JSON
//! to create a lightweight data serialization format that can organize data and
//! help Web applications to inter-operate at a large scale.
//!
//! # State of the crate
//!
//! This new version of the crate includes many breaking changes
//! that are not yet documented. Some functions may still be renamed,
//! which is why the latest release is still flagged as `beta`.
//! Don't hesitate to contact me for any question about how to use this new API
//! while I write the documentation.
pub use json_ld_compaction as compaction;
pub use json_ld_context_processing as context_processing;
pub use *;
pub use json_ld_expansion as expansion;
pub use json_ld_syntax as syntax;
pub use Compact;
pub use Process;
pub use Expand;
pub use *;