-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (31 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "vectune"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["ClankPan <clankpan24cm@gmail.com>"]
description = "A lightweight VectorDB with Incremental Indexing, based on FreshVamana."
keywords = ["FreshVamana", "VectorDataBase", "IncrementalIndexing", "LightWeight", "DisckANN"]
categories = ["data-structures", "database", "mathematics"]
repository = "https://github.com/ClankPan/vectune"
readme = "README.md"
[dependencies]
itertools = "0.12.1"
parking_lot = "0.12.1"
rand = { version = "0.8", features = ["small_rng"] }
rayon = "1.10.0"
rustc-hash = "1.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
getrandom = { version = "0.2", optional = true }
indicatif = { version = "0.17", optional = true }
dashmap = "5.5.3"
[dev-dependencies]
rand = { version = "0.8", features = ["small_rng"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
byteorder = "1.5.0"
indicatif = "0.17"
[features]
wasm32-unkown-unknown = ["getrandom/custom"]
progress-bar = ["indicatif"]