buffdb 0.2.0

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