Skip to main content

rdf_reader_jelly/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3//! A Jelly file reader for RDF.rs, a Rust framework for RDF
4//! knowledge graphs.
5//!
6//! # Examples
7//!
8//! ```rust
9//! use rdf_reader_jelly::*;
10//! ```
11//!
12//! See: <https://jelly-rdf.github.io>
13
14#![no_std]
15#![deny(unsafe_code)]
16
17#[cfg(feature = "alloc")]
18extern crate alloc;
19
20#[cfg(feature = "std")]
21extern crate std;
22
23#[doc = include_str!("../README.md")]
24#[cfg(doctest)]
25pub struct ReadmeDoctests;