Some checks are pending
Documentation Lint & Validation / Markdown Linting (push) Waiting to run
Documentation Lint & Validation / Validate mdBook Configuration (push) Waiting to run
Documentation Lint & Validation / Content & Structure Validation (push) Waiting to run
Documentation Lint & Validation / Lint & Validation Summary (push) Blocked by required conditions
mdBook Build & Deploy / Build mdBook (push) Waiting to run
mdBook Build & Deploy / Documentation Quality Check (push) Blocked by required conditions
mdBook Build & Deploy / Deploy to GitHub Pages (push) Blocked by required conditions
mdBook Build & Deploy / Notification (push) Blocked by required conditions
Rust CI / Security Audit (push) Waiting to run
Rust CI / Check + Test + Lint (nightly) (push) Waiting to run
Rust CI / Check + Test + Lint (stable) (push) Waiting to run
95 lines
2.0 KiB
TOML
95 lines
2.0 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]
|
|
# 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 }
|
|
|
|
# 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 }
|
|
dotenv = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
regex = { 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 }
|