qdrant-client 1.1.1

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_err() {
        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(())
}