Merge commit 'd803bfe2b1fe7f5e219e50ac20d6801a0a58ac75' as 'vendor/ruvector'

This commit is contained in:
ruv
2026-02-28 14:39:40 -05:00
7854 changed files with 3522914 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
[package]
name = "exo-backend-classical"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["rUv <ruv@ruv.io>"]
repository = "https://github.com/ruvnet/ruvector"
homepage = "https://ruv.io"
documentation = "https://docs.rs/exo-backend-classical"
description = "Classical compute backend for EXO-AI cognitive substrate with SIMD acceleration"
keywords = ["backend", "compute", "simd", "cognitive", "ai"]
categories = ["science", "algorithms", "simulation"]
readme = "README.md"
[dependencies]
# EXO dependencies
exo-core = "0.1"
exo-manifold = "0.1"
exo-temporal = "0.1"
exo-federation = "0.1"
exo-exotic = "0.1"
# Ruvector dependencies
ruvector-core = { version = "0.1", features = ["simd"] }
ruvector-graph = "0.1"
ruvector-domain-expansion = "2.0"
thermorust = "0.1"
ruvector-dither = "0.1"
rand = { version = "0.8", features = ["small_rng"] }
# Utility dependencies
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
parking_lot = "0.12"
uuid = { version = "1.0", features = ["v4"] }
[features]
default = []
rvf = ["ruvector-domain-expansion/rvf"]
[dev-dependencies]