feather-db-cli 0.2.0

Command-line interface for Feather vector database
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    cc::Build::new()
        .cpp(true)
        .std("c++17")
        .file("cpp/src/feather_core.cpp")
        .file("cpp/src/metadata.cpp")
        .file("cpp/src/filter.cpp")
        .file("cpp/src/scoring.cpp")
        .include("cpp/include")
        .compile("feather");
}