1
0
mirror of https://github.com/osmarks/meme-search-engine.git synced 2025-02-22 22:10:10 +00:00

28 lines
498 B
TOML
Raw Permalink Normal View History

2024-12-31 23:05:48 +00:00
[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"