rust-lzma 0.5.1

Simple interface for LZMA compression and decompression.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate pkg_config;

use pkg_config::find_library;


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