libmapper-rs 1.0.2

Rust bindings for libmapper
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    if std::env::var("DOCS_RS").is_ok() {
        return; // don't try to find libmapper on docs.rs
    }

    pkg_config::Config::new()
        .atleast_version("2.4.6")
        .probe("libmapper")
        .unwrap();
}