Skip to main content

rdf_writer_turtle/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3//! A Turtle file writer for RDF.rs, a Rust framework for RDF
4//! knowledge graphs.
5//!
6//! # Examples
7//!
8//! ```rust
9//! use rdf_writer_turtle::*;
10
11#![no_std]
12#![deny(unsafe_code)]