Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions apps/gateway/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 10 additions & 5 deletions apps/gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,16 @@ futures-util = "0.3"
# Error handling
anyhow = "1"

# Time (for certificate validity + RFC 3339 parsing)
time = { version = "0.3", features = ["parsing"] }

# Direct database access
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-rustls", "postgres"] }
# Time (for certificate validity + RFC 3339 parsing). `serde` (Phase 5): lets
# `db::ClientHostRow.revoked_at` (an `Option<PrimitiveDateTime>`) ride the same
# JSON cache-serialization path every other cached DB row uses.
time = { version = "0.3", features = ["parsing", "serde"] }

# Direct database access. `time` (Phase 5): maps the Postgres TIMESTAMP column
# (`client_hosts.revoked_at`, no time zone) to `time::PrimitiveDateTime` for
# `db::ClientHostRow` — sqlx maps TIMESTAMP→PrimitiveDateTime (TIMESTAMPTZ would
# be OffsetDateTime).
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-rustls", "postgres", "time"] }

# Agent Access (Bitwarden vault credential injection)
ap-client = "0.9.0"
Expand Down
Loading