mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-10 15:02:56 +00:00
## Problem We want to use safekeeper http client in storage controller and neon_local. ## Summary of changes Extract it to separate crate. No functional changes.
14 lines
350 B
TOML
14 lines
350 B
TOML
[package]
|
|
name = "safekeeper_client"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
safekeeper_api.workspace = true
|
|
thiserror.workspace = true
|
|
reqwest = { workspace = true, features = [ "stream" ] }
|
|
serde.workspace = true
|
|
utils.workspace = true
|
|
workspace_hack = { version = "0.1", path = "../../workspace_hack" }
|