29 lines
944 B
TOML
29 lines
944 B
TOML
[package]
|
|
name = "ruvector-crv"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
authors = ["ruvector contributors"]
|
|
description = "CRV (Coordinate Remote Viewing) protocol integration for ruvector - maps 6-stage signal line methodology to vector database subsystems"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/ruvnet/ruvector"
|
|
readme = "README.md"
|
|
keywords = ["crv", "signal-line", "vector-search", "attention", "hyperbolic"]
|
|
categories = ["algorithms", "science"]
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
ruvector-attention = { version = "2.0", path = "../ruvector-attention" }
|
|
ruvector-gnn = { version = "2.0.1", path = "../ruvector-gnn", default-features = false }
|
|
ruvector-mincut = { version = "2.0.1", path = "../ruvector-mincut", default-features = false, features = ["exact"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|