From ab3a560bb2bd5361892a6fc0107bf560feeddc4c Mon Sep 17 00:00:00 2001 From: Reuven Date: Thu, 22 Jan 2026 21:24:02 -0500 Subject: [PATCH] fix(prime-radiant): shorten keyword for crates.io compliance Co-Authored-By: Claude Opus 4.5 --- crates/prime-radiant/Cargo.toml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/crates/prime-radiant/Cargo.toml b/crates/prime-radiant/Cargo.toml index 1b8b74ad..5e49f6aa 100644 --- a/crates/prime-radiant/Cargo.toml +++ b/crates/prime-radiant/Cargo.toml @@ -9,7 +9,7 @@ description = "Universal coherence engine using sheaf Laplacian mathematics for repository = "https://github.com/ruvnet/ruvector" homepage = "https://ruv.io/ruvector" documentation = "https://docs.rs/prime-radiant" -keywords = ["coherence", "ai-safety", "hallucination-detection", "llm", "sheaf-theory"] +keywords = ["coherence", "ai-safety", "hallucination", "llm", "sheaf-theory"] categories = ["algorithms", "science", "mathematics", "development-tools"] readme = "README.md" @@ -27,47 +27,47 @@ crate-type = ["rlib"] # 256-tile WASM coherence fabric (cognitum-gate-kernel) # Provides: TileState, Delta, WitnessFragment, EvidenceAccumulator -cognitum-gate-kernel = { version = "0.1.0", path = "../cognitum-gate-kernel", features = ["std"], optional = true } +cognitum-gate-kernel = { version = "0.1.0", features = ["std"], optional = true } # Self-optimizing thresholds with EWC++ (sona) # Provides: SonaEngine, MicroLoRA, EwcPlusPlus, ReasoningBank -ruvector-sona = { version = "0.1.4", path = "../sona", features = ["serde-support"], optional = true } +ruvector-sona = { version = "0.1.4", features = ["serde-support"], optional = true } # Learned restriction maps with GNN (ruvector-gnn) # Provides: RuvectorLayer, ElasticWeightConsolidation, ReplayBuffer -ruvector-gnn = { version = "0.1.31", path = "../ruvector-gnn", default-features = false, optional = true } +ruvector-gnn = { version = "0.1.31", default-features = false, optional = true } # Subpolynomial n^o(1) graph partitioning (ruvector-mincut) # Provides: SubpolynomialMinCut, CognitiveMinCutEngine, WitnessTree -ruvector-mincut = { version = "0.1.30", path = "../ruvector-mincut", default-features = false, optional = true } +ruvector-mincut = { version = "0.1.30", default-features = false, optional = true } # Hierarchy-aware Poincare energy (ruvector-hyperbolic-hnsw) # Provides: HyperbolicHnsw, poincare_distance, ShardedHyperbolicHnsw -ruvector-hyperbolic-hnsw = { version = "0.1.0", path = "../ruvector-hyperbolic-hnsw", default-features = false, optional = true } +ruvector-hyperbolic-hnsw = { version = "0.1.0", default-features = false, optional = true } # CoherenceGatedSystem, HDC witnesses, neural gating (ruvector-nervous-system) # Provides: CoherenceGatedSystem, GlobalWorkspace, HdcMemory, Dendrite -ruvector-nervous-system = { version = "0.1.30", path = "../ruvector-nervous-system", default-features = false, optional = true } +ruvector-nervous-system = { version = "0.1.30", default-features = false, optional = true } # Topology-gated attention, MoE, PDE diffusion (ruvector-attention) # Provides: TopologyGatedAttention, MoEAttention, DiffusionAttention -ruvector-attention = { version = "0.1.31", path = "../ruvector-attention", default-features = false, optional = true } +ruvector-attention = { version = "0.1.31", default-features = false, optional = true } # Distributed Raft consensus (ruvector-raft) # Provides: RaftNode, RaftConfig, LogEntry, ConsensusState -ruvector-raft = { version = "0.1.30", path = "../ruvector-raft", optional = true } +ruvector-raft = { version = "0.1.30", optional = true } # Vector storage and HNSW search (ruvector-core) # Provides: VectorDB, HnswConfig, DistanceMetric -ruvector-core = { version = "0.1.31", path = "../ruvector-core", default-features = false } +ruvector-core = { version = "0.1.31", default-features = false } # Graph data structures (ruvector-graph) # Provides: GraphStore, AdjacencyList -ruvector-graph = { version = "0.1.31", path = "../ruvector-graph", default-features = false, optional = true } +ruvector-graph = { version = "0.1.31", default-features = false, optional = true } # LLM serving runtime with Ruvector integration (ruvllm) # Provides: WitnessLog, RoutingDecision, ModelSize, QualityMetrics -ruvllm = { version = "2.0.1", path = "../ruvllm", default-features = false, features = ["async-runtime"], optional = true } +ruvllm = { version = "2.0.1", default-features = false, features = ["async-runtime"], optional = true } # ----------------------------------------------------------------------------- # Math and Numerics