pbdb-macros 0.3.0

DBMS over RocksDB with schema as Protobuf description with custom annotations
Documentation
1
2
3
4
5
6
7
use std::io::Result;

fn main() -> Result<()> {
  println!("cargo:rerun-if-changed=proto/descriptor_subset.proto");
  prost_build::compile_protos(&["proto/descriptor_subset.proto"], &["proto"])?;
  Ok(())
}