mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-08 14:02:55 +00:00
Don't download ext_index.json from s3, but instead receive it as a part of spec from control plane. This eliminates s3 access for most compute starts, and also allows us to update extensions spec on the fly
19 lines
395 B
TOML
19 lines
395 B
TOML
[package]
|
|
name = "compute_api"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
chrono.workspace = true
|
|
serde.workspace = true
|
|
serde_with.workspace = true
|
|
serde_json.workspace = true
|
|
regex.workspace = true
|
|
|
|
utils = { path = "../utils" }
|
|
remote_storage = { version = "0.1", path = "../remote_storage/" }
|
|
|
|
workspace_hack.workspace = true
|