All checks were successful
agent + server Cargo.toml hardcoded 0.2.0 (below the workspace.package 0.2.2 and the last release tag v0.2.2); dashboard was on a divergent 2.0.0 scheme. Align all component manifests + the dashboard lockfile to the v0.2.2 baseline so the next release bumps them coherently to 0.3.0 rather than decreasing the dashboard. No code change. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
65 lines
1.4 KiB
TOML
65 lines
1.4 KiB
TOML
[package]
|
|
name = "guruconnect-server"
|
|
version = "0.2.2"
|
|
edition = "2021"
|
|
authors = ["AZ Computer Guru"]
|
|
description = "GuruConnect Remote Desktop Relay Server"
|
|
|
|
[dependencies]
|
|
# Async runtime
|
|
tokio = { version = "1", features = ["full", "sync", "time", "rt-multi-thread", "macros"] }
|
|
|
|
# Web framework
|
|
axum = { version = "0.7", features = ["ws", "macros"] }
|
|
tower = "0.5"
|
|
tower-http = { version = "0.6", features = ["cors", "trace", "compression-gzip", "fs"] }
|
|
# NOTE: tower_governor removed in Task 4 — its rate-limit layer never compiled in
|
|
# this codebase (the GovernorLayer generic signature it required is not in the
|
|
# crate's public API). Replaced by the in-memory limiter in middleware/rate_limit.rs.
|
|
|
|
# WebSocket
|
|
futures-util = "0.3"
|
|
|
|
# Database
|
|
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "uuid", "chrono", "json"] }
|
|
|
|
# Protocol (protobuf)
|
|
prost = "0.13"
|
|
prost-types = "0.13"
|
|
bytes = "1"
|
|
|
|
# Serialization
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
# Logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# Error handling
|
|
anyhow = "1"
|
|
thiserror = "1"
|
|
|
|
# Configuration
|
|
toml = "0.8"
|
|
|
|
# Auth
|
|
jsonwebtoken = "9"
|
|
argon2 = "0.5"
|
|
|
|
# Crypto
|
|
ring = "0.17"
|
|
|
|
# UUID
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
|
|
# Time
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
rand = "0.8"
|
|
|
|
# Monitoring
|
|
prometheus-client = "0.22"
|
|
|
|
[build-dependencies]
|
|
prost-build = "0.13"
|