libxml 0.2.14

A Rust wrapper for libxml2 - the XML C parser and toolkit developed for the Gnome project
Documentation
1
2
3
4
5
6
7
use pkg_config::find_library;

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