1
0
mirror of https://github.com/osmarks/meme-search-engine.git synced 2025-02-22 14:00:09 +00:00
2025-01-16 21:10:12 +00:00

28 lines
498 B
TOML

[package]
name = "diskann"
version = "0.1.0"
edition = "2021"
[dependencies]
half = { version = "2", features = ["bytemuck"] }
fastrand = "2"
tracing = "0.1"
tracing-subscriber = "0.3"
simsimd = "6"
foldhash = "0.1"
tqdm = "0.7"
anyhow = "1"
bytemuck = { version = "1", features = ["extern_crate_alloc"] }
serde = { version = "1", features = ["derive"] }
rmp-serde = "1"
rayon = "1"
matrixmultiply = "0.3"
[lib]
name = "diskann"
path = "src/lib.rs"
[[bin]]
name = "diskann"
path = "src/main.rs"