libxml 0.2.12

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
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")
  }
}