systematic 0.0.2

Rusty bindings to libsystemd
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    if std::env::var("DOCS_RS").is_ok() {
        return;
    }

    pkg_config::Config::new()
        .atleast_version("235")
        .probe("libsystemd")
        .expect("Failed to link to libsystemd");
}