satoridb 0.1.2

Embedded vector database for approximate nearest neighbor search (experimental).
Documentation
1
2
3
4
5
6
7
use std::fs;

fn main() {
    // Keep test/temp artifacts inside the workspace instead of /tmp to avoid filling system tmpfs.
    let _ = fs::create_dir_all(".tmp");
    println!("cargo:rustc-env=TMPDIR=.tmp");
}