Files
wifi-densepose/examples/refrag-pipeline/Cargo.toml
ruv d803bfe2b1 Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector
git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
2026-02-28 14:39:40 -05:00

51 lines
1.1 KiB
TOML

[package]
name = "refrag-pipeline-example"
version = "0.1.0"
edition = "2021"
description = "REFRAG Pipeline Example - Compress-Sense-Expand for 30x RAG latency reduction"
license = "MIT"
publish = false
[[bin]]
name = "refrag-demo"
path = "src/main.rs"
[[bin]]
name = "refrag-benchmark"
path = "src/benchmark.rs"
[dependencies]
# RuVector core for vector storage
ruvector-core = { path = "../../crates/ruvector-core" }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
base64 = "0.22"
# Math and numerics
ndarray = { version = "0.16", features = ["serde"] }
rand = "0.8"
rand_distr = "0.4"
# Async runtime
tokio = { version = "1.41", features = ["rt-multi-thread", "macros", "time"] }
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Utilities
uuid = { version = "1.11", features = ["v4"] }
chrono = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "refrag_bench"
harness = false