buffdb 0.3.1

Embedded storage at the speed of light.
Documentation
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()
        .protoc_arg("--experimental_allow_proto3_optional") // hyperium/tonic#1331
        .build_server(true)
        .compile(
            &[
                "src/schema/blob.proto",
                "src/schema/common.proto",
                "src/schema/kv.proto",
            ],
            &["src/schema"],
        )?;
    Ok(())
}