mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-14 17:02:56 +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.
26 lines
640 B
TOML
26 lines
640 B
TOML
[package]
|
|
name = "pageserver_client"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
testing = [ "pageserver_api/testing" ]
|
|
|
|
[dependencies]
|
|
pageserver_api.workspace = true
|
|
thiserror.workspace = true
|
|
reqwest = { workspace = true, features = [ "stream" ] }
|
|
http-utils.workspace = true
|
|
utils.workspace = true
|
|
serde.workspace = true
|
|
workspace_hack = { version = "0.1", path = "../../workspace_hack" }
|
|
tokio-postgres.workspace = true
|
|
tokio-stream.workspace = true
|
|
tokio.workspace = true
|
|
futures.workspace = true
|
|
tokio-util.workspace = true
|
|
anyhow.workspace = true
|
|
postgres.workspace = true
|
|
bytes.workspace = true
|