buffdb 0.1.0

Embedded storage at the speed of light.
1
2
3
4
5
6
7
8
9
10
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure()
        .build_server(true)
        .compile(
            &["src/kv/kv_schema.proto", "src/blob/blob_schema.proto"],
            &["src/kv", "src/blob"],
        )
        .unwrap_or_else(|e| panic!("Failed to compile protos {:?}", e));
    Ok(())
}