mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-22 21:59:59 +00:00
Avoids compiling the crate and its dependencies into binaries that don't need them. Shrinks the compute_ctl binary from about 31MB to 28MB in the release-line-debug-size-lto profile.
15 lines
378 B
TOML
15 lines
378 B
TOML
[package]
|
|
name = "safekeeper_client"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
http-utils.workspace = true
|
|
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" }
|