grafeo-core 0.5.39

Core graph models, indexes, and execution primitives for Grafeo
Documentation
1
2
3
4
5
6
7
8
9
10
//! Turtle (Terse RDF Triple Language) serialization and parsing.
//!
//! Implements the [W3C Turtle](https://www.w3.org/TR/turtle/) format for RDF data.
//! This module provides zero-dependency Turtle support using Grafeo's native RDF types.

mod parser;
mod serializer;

pub use parser::{TurtleError, TurtleParser};
pub use serializer::TurtleSerializer;