Files
neon/libs/postgres_connection/Cargo.toml
Heikki Linnakangas a6f315c9c9 Remove unnecessary dependencies to synchronous 'postgres' crate (#10938)
The synchronous 'postgres' crate is just a wrapper around the async
'tokio_postgres' crate. Some places were unnecessarily using the
re-exported NoTls and Error from the synchronous 'postgres' crate, even
though they were otherwise using the 'tokio_postgres' crate. Tidy up by
using the tokio_postgres types directly.
2025-02-24 09:40:25 +00:00

15 lines
274 B
TOML

[package]
name = "postgres_connection"
version = "0.1.0"
edition.workspace = true
license.workspace = true
[dependencies]
anyhow.workspace = true
itertools.workspace = true
tokio-postgres.workspace = true
url.workspace = true
[dev-dependencies]
once_cell.workspace = true