-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (22 loc) · 737 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (22 loc) · 737 Bytes
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
[package]
name = "vcal-core"
version = "0.1.3"
description = "Lightweight in-process HNSW vector index (VCAL core)"
edition = "2021"
rust-version = "1.56"
license = "Apache-2.0"
repository = "https://github.com/vcal-project/vcal-core"
resolver = "2"
[features]
default = []
serde = ["dep:serde", "dep:serde_json"]
redis_bench = ["dep:redis"]
[dependencies]
rand = "0.9.3"
smallvec = "1.11"
ordered-float = "3"
serde = { version = "1", features = ["derive"], optional = true }
serde_json = { version = "1", optional = true }
redis = { version = "0.26", optional = true }
[dev-dependencies]
criterion = { version = "0.5.1", default-features = false }