Some checks failed
Documentation Lint & Validation / Markdown Linting (push) Has been cancelled
Documentation Lint & Validation / Validate mdBook Configuration (push) Has been cancelled
Documentation Lint & Validation / Content & Structure Validation (push) Has been cancelled
mdBook Build & Deploy / Build mdBook (push) Has been cancelled
Nickel Type Check / Nickel Type Checking (push) Has been cancelled
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (push) Has been cancelled
Documentation Lint & Validation / Lint & Validation Summary (push) Has been cancelled
mdBook Build & Deploy / Documentation Quality Check (push) Has been cancelled
mdBook Build & Deploy / Deploy to GitHub Pages (push) Has been cancelled
mdBook Build & Deploy / Notification (push) Has been cancelled
on+re:
- core.ncl: 5 new Practice nodes (notification-channels,
vapora-capabilities, agent-hot-reload-stable-identity,
merkle-audit-trail, notification-channels) + 5 new edges;
knowledge-graph-execution-history updated with HNSW+BM25+RRF
- state.ncl: production-readiness blocker/catalyst updated (hot-reload
complete, BudgetManager/LLMRouter still require restart);
ontoref-integration catalyst updated (vapora-ontology/reflection
crates, api-catalog.json, nickel contracts)
ADRs (NCL):
- adr-013: KG hybrid search — HNSW+BM25+RRF, rejected in-process scan
- adr-014: capability packages — AgentDefinition→vapora-shared,
DashMap shard-before-await constraint
- adr-015: Merkle audit trail — SHA-256 hash chain, rejected HMAC
- adr-016: agent hot-reload — stable_id=role, learning_profiles survive
drain, BudgetManager excluded from reload scope
landing page:
- 2 new feature boxes: VCS-Agnostic Worktree (jj/git), Ontology Protocol
- KG box: 20→28 tests, HNSW+BM25+RRF description
- Agents box: 71→82 tests, hot-reload + stable_id
- tech stack: Rust 21→23 crates, added jj, Radicle, ontoref badges
- status badge: 620→691 tests
104 lines
2.4 KiB
TOML
104 lines
2.4 KiB
TOML
|
|
[package]
|
|
name = "vapora-backend"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "vapora_backend"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "vapora-backend"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# Ontoref API catalog
|
|
ontoref-ontology = { path = "../../../ontoref/crates/ontoref-ontology", features = ["derive"] }
|
|
ontoref-derive = { path = "../../../ontoref/crates/ontoref-derive" }
|
|
inventory = "0.3"
|
|
|
|
# Internal crates
|
|
vapora-shared = { workspace = true }
|
|
vapora-agents = { workspace = true }
|
|
vapora-llm-router = { workspace = true }
|
|
vapora-swarm = { workspace = true }
|
|
vapora-tracking = { path = "../vapora-tracking" }
|
|
vapora-knowledge-graph = { path = "../vapora-knowledge-graph" }
|
|
vapora-workflow-engine = { workspace = true }
|
|
vapora-channels = { workspace = true }
|
|
vapora-rlm = { path = "../vapora-rlm" }
|
|
|
|
# Secrets management
|
|
secretumvault = { workspace = true }
|
|
|
|
# Web framework
|
|
axum = { workspace = true }
|
|
tower = { workspace = true }
|
|
tower-http = { workspace = true }
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
|
|
# Error handling
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
# HTTP
|
|
http = { workspace = true }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
# Database
|
|
surrealdb = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
|
|
# Message Queue
|
|
async-nats = { workspace = true }
|
|
|
|
# Authentication
|
|
jsonwebtoken = { workspace = true }
|
|
argon2 = { workspace = true }
|
|
tower-sessions = { workspace = true }
|
|
tower-cookies = { workspace = true }
|
|
|
|
# Utilities
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
hex = { workspace = true }
|
|
dotenv = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
regex = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
# Configuration
|
|
clap = { workspace = true }
|
|
|
|
# Metrics
|
|
prometheus = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
|
|
# TLS (native tokio-rustls)
|
|
rustls = { workspace = true }
|
|
rustls-pemfile = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
mockall = { workspace = true }
|
|
axum-test = { workspace = true }
|
|
wiremock = { workspace = true }
|
|
tempfile = { workspace = true }
|