-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 877 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 877 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
29
30
31
32
[package]
name = "vx-db"
authors = ["Harry Scholes"]
version = "0.1.0"
edition = "2024"
description = "A vector database on top of Vortex"
repository = "https://github.com/harryscholes/vx-db"
[lib]
name = "vx_db"
path = "src/lib.rs"
[[bin]]
name = "vx-db"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.5.53", features = ["derive"] }
futures-util = "0.3.31"
rand = "0.9.2"
tokio = { version = "1.48.0", features = ["full"] }
tqdm = "0.8.0"
uuid = { version = "1.18.1", features = ["v4"] }
# vortex = { version = "0.56.0", features = ["tokio"] } # Released version
vortex = { git = "https://github.com/vortex-data/vortex.git", rev = "a09481cd7dfcc88f96ad65296a53b6926a81c5a4", features = [
"tokio",
] } # Specific commit
# vortex = { path = "../vortex/vortex", features = ["tokio"] } # Local workspace version
[dev-dependencies]
tempfile = "3"