libxml 0.2.9

A Rust wrapper for libxml2 - the XML C parser and toolkit developed for the Gnome project
Documentation
use pkg_config::find_library;

fn main() {
  if find_library("libxml-2.0").is_ok() {
    return;
  } else {
    panic!("Could not find libxml2 using pkg-config")
  }
}