Files
neon/safekeeper/client/Cargo.toml
Arseny Sher 1ed0e52bc8 Extract safekeeper http client to separate crate. (#10140)
## 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.
2024-12-16 12:07:24 +00:00

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" }