qdrant-client 0.1.2

Rust client for Qdrant Vector Search Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() -> std::io::Result<()> {
    if !std::env::var("DOCS_RS").is_ok() {
        return tonic_build::configure()
            .out_dir("src/") // saves generated structures at this location
            .compile(
                &["proto/qdrant.proto"], // proto entry point
                &["proto"], // specify the root location to search proto dependencies
            )
    }
    Ok(())
}