-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (33 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
34 lines (33 loc) · 1.01 KB
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 = "graph-vector-bench"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8.6"
bincode = { version = "2.0.1", features = ["serde"] }
bytemuck = "1.24.0"
clap = { version = "4.5.48", features = ["derive"] }
color-eyre = "0.6.5"
deadpool-postgres = "0.14.1"
falkordb = { version = "0.1.11", features = ["tokio"] }
flume = "0.11.1"
futures = "0.3.31"
memmap2 = "0.9.8"
neo4rs = "0.8.0"
pgvector = { version = "0.4.1", features = ["postgres"] }
polars = { version = "0.51.0", features = ["lazy", "parquet", "random"] }
rand = "0.9.2"
rand_distr = "0.5.1"
reqwest = { version = "0.12.23", features = ["blocking", "json"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
sha2 = "0.10.9"
thiserror = "2.0.17"
tokio = { version = "1.47.1", features = ["rt", "macros"] }
tokio-postgres = { version = "0.7.15", features = [
"with-uuid-1",
"with-serde_json-1",
] }
toml = "0.9.7"
tower-http = { version = "0.6.6", features = ["trace"] }
uuid = { version = "1.18.1", features = ["v4"] }