listpack 0.1.6

Rust wrapper for the "listpack" data structure created and maintained for Redis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//extern crate cpp_build;
extern crate gcc;

fn main() {
    // Build a Redis pseudo-library so that we have symbols that we can link
    // against while building Rust code.
    gcc::Build::new()
        .file("c/listpack.c")
        .file("c/listpack_ext.c")
        .include("c/")
        .compile("liblistpack.a");
}