kirmes 0.0.2

A library providing access to systemd's userdb varlink interface
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate varlink_generator;

fn main() {
    // We will treat the int type as u32 as this the same as uid_t
    varlink_generator::cargo_build_tosource_options(
        "src/io.systemd.UserDatabase.varlink",
        /* rustfmt = */ true,
        &varlink_generator::GeneratorOptions {
            int_type: Some("u32"),
            ..Default::default()
        },
    );
}