mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-25 15:03:46 +00:00
- ruvector-attention: 0.1.32 → version.workspace = true (2.0.4) - ruvector-attention-wasm: 0.1.32 → workspace, dep 0.1.31 → 2.0 - ruvector-attention-node: 0.1.0 → workspace, dep already 2.0 - ruvector-dag: 0.1.0 → workspace, add version spec on ruvector-core dep - ruvector-gnn-wasm: fix malformed Cargo.toml (metadata before version), add version spec - ruvector-attention-unified-wasm: add version specs, fix category slug - Update all consumers: ruvector-crv, ruvllm, ruvector-postgres, prime-radiant, rvdna, OSpipe Published to crates.io: ruvector-attention@2.0.4, ruvector-dag@2.0.4, ruvector-tiny-dancer-core@2.0.4, ruvector-attention-wasm@2.0.4, ruvector-attention-node@2.0.4, ruvector-gnn-wasm@2.0.4, ruvector-gnn-node@2.0.4, ruvector-tiny-dancer-wasm@2.0.4, ruvector-tiny-dancer-node@2.0.4, ruvector-router-wasm@2.0.4, ruvector-router-ffi@2.0.4, ruvector-router-cli@2.0.4, ruvector-attention-unified-wasm@0.1.0 Co-Authored-By: claude-flow <ruv@ruv.net>
32 lines
886 B
TOML
32 lines
886 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 = "2.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"
|