mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-26 15:49:58 +00:00
## Problem The gRPC API does not provide LSN leases. ## Summary of changes * Add LSN lease support to the gRPC API. * Use gRPC LSN leases for static computes with `grpc://` connstrings. * Move `PageserverProtocol` into the `compute_api::spec` module and reuse it.
19 lines
403 B
TOML
19 lines
403 B
TOML
[package]
|
|
name = "compute_api"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
chrono.workspace = true
|
|
indexmap.workspace = true
|
|
jsonwebtoken.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
regex.workspace = true
|
|
url.workspace = true
|
|
|
|
utils = { path = "../utils" }
|
|
remote_storage = { version = "0.1", path = "../remote_storage/" }
|