Files
qdrant/lib/api/build.rs
Arnaud Gourlay fa5a501e25 Remove last sleep consensus test (#720)
* remove sleep by polling peer addition

* cleanup
2022-06-21 17:59:59 +02:00

9 lines
329 B
Rust

fn main() -> std::io::Result<()> {
tonic_build::configure()
.out_dir("src/grpc/") // saves generated structures at this location
.compile(
&["src/grpc/proto/qdrant.proto"], // proto entry point
&["src/grpc/proto"], // specify the root location to search proto dependencies
)
}