Don't depend on the postgres_ffi just for one type (#12610)

We don't want to depend on postgres_ffi in an API crate. If there is no
such dependency, we can compile stuff like `storcon_cli` without needing
a full working postgres build. Fixes regression of #12548 (before we
could compile it).
This commit is contained in:
Arpad Müller
2025-07-15 19:28:08 +02:00
committed by GitHub
parent 5c9c3b3317
commit 5c934efb29
13 changed files with 22 additions and 15 deletions

View File

@@ -9,7 +9,7 @@ anyhow.workspace = true
const_format.workspace = true
serde.workspace = true
serde_json.workspace = true
postgres_ffi.workspace = true
postgres_ffi_types.workspace = true
postgres_versioninfo.workspace = true
pq_proto.workspace = true
tokio.workspace = true