raphtory 0.15.1

raphtory, a temporal graph library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::io::Result;
#[cfg(feature = "proto")]
fn main() -> Result<()> {
    prost_build::compile_protos(&["src/serialise/graph.proto"], &["src/serialise"])?;
    println!("cargo::rerun-if-changed=src/serialise/graph.proto");
    Ok(())
}

#[cfg(not(feature = "proto"))]
fn main() -> Result<()> {
    Ok(())
}