1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! # A wrapper for libxslt
//! This library provides an interface to a subset of the libxslt API.
//!
#![deny(missing_docs)]
extern crate libc;
extern crate libxml;

// Bindings to the C interface
pub mod bindings;
/// Parser for loading an XSLT stylesheet from a file or string source.
pub mod parser;
/// Stylesheet functionality for Document transformation.
pub mod stylesheet;