redix 1.2.1

Rust wrapper for the ANSI C Radix Tree "rax" https://github.com/antirez/rax implementation used in Redis
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    // Build a pseudo-library so that we have symbols that we can link
    // against while building Rust code.
    cc::Build::new()
        .file("c/rax.c")
        .file("c/rax_ext.c")
        .include("c/")
        .compile("librax.a");
}