libxml 0.3.8

A Rust wrapper for libxml2 - the XML C parser and toolkit developed for the Gnome project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Issues coming from bindgen
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(dead_code)]
#![allow(improper_ctypes)]
#![allow(missing_docs)]

/*
 * helper var until we figure out well-formedness checks
 */

pub static mut HACKY_WELL_FORMED: bool = false;

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));