ruvector/crates/ruvector-attention-cli/Cargo.toml
rUv 8a61930d00 fix: Fix PQ integration test failures and add v0.1.18 release
- Fix test_enhanced_pq_768d: increase num_vectors from 200 to 300
  to ensure k (256) doesn't exceed vector count
- Fix test_pq_recall_128d -> test_pq_recall_384d: relax assertion
  for quantized search (PQ is approximate, distances vary)
- Bump version to 0.1.18 across workspace and npm packages
- Add ruvector-attention crate with graph attention mechanisms
- Add hyperbolic attention and mixed curvature support
- Add training utilities (curriculum learning, hard negative mining)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-30 20:45:43 +00:00

32 lines
888 B
TOML

[package]
name = "ruvector-attention-cli"
version = "0.1.0"
edition = "2021"
description = "CLI for ruvector-attention - High-performance attention mechanisms"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ruvnet/ruvector"
authors = ["rUv <ruv@ruv.io>"]
[[bin]]
name = "ruvector-attention"
path = "src/main.rs"
[dependencies]
ruvector-attention = { version = "0.1.0", path = "../ruvector-attention" }
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["full"] }
axum = "0.7"
tower-http = { version = "0.5", features = ["cors", "trace"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rustyline = "13"
indicatif = "0.17"
tabled = "0.15"
anyhow = "1.0"
rmp-serde = "1.1"
[dev-dependencies]
criterion = "0.5"