-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (48 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
60 lines (48 loc) · 1.29 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "ruvector-cloudrun-gpu"
version = "0.1.0"
edition = "2021"
description = "RuVector Cloud Run GPU benchmarks with self-learning models"
license = "MIT"
[[bin]]
name = "gpu-benchmark"
path = "src/main.rs"
[dependencies]
# RuVector core crates
ruvector-core = { path = "../../crates/ruvector-core", default-features = false }
ruvector-gnn = { path = "../../crates/ruvector-gnn" }
ruvector-attention = { path = "../../crates/ruvector-attention" }
ruvector-graph = { path = "../../crates/ruvector-graph", default-features = false, features = ["wasm"] }
# Async runtime
tokio = { version = "1.41", features = ["full"] }
# CLI and output
clap = { version = "4.5", features = ["derive"] }
indicatif = "0.17"
console = "0.15"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# HTTP server for Cloud Run
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace"] }
# Metrics and timing
hdrhistogram = "7.5"
sysinfo = "0.31"
chrono = "0.4"
# Math and data
rand = "0.8"
rand_distr = "0.4"
rayon = "1.10"
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
[features]
default = []
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 4