lance 0.1.1

A columnar data format that is 100x faster than Parquet for random access.
Documentation
1
2
3
4
5
6
7
8
use std::io::Result;

fn main() -> Result<()> {
    println!("cargo:rerun-if-changed=protos");

    prost_build::compile_protos(&["./protos/format.proto"], &["./protos"])?;
    Ok(())
}