mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-05 20:42:54 +00:00
To untie cyclic dependency between sync and async versions of postgres_backend, copy QueryError and some logging/error routines to postgres_backend.rs. This is temporal glue to make commits smaller, sync version will be dropped by the upcoming commit completely.
27 lines
604 B
TOML
27 lines
604 B
TOML
[package]
|
|
name = "postgres_backend"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
anyhow.workspace = true
|
|
bytes.workspace = true
|
|
futures.workspace = true
|
|
rustls.workspace = true
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
tokio-rustls.workspace = true
|
|
tracing.workspace = true
|
|
|
|
pq_proto.workspace = true
|
|
utils.workspace = true
|
|
workspace_hack.workspace = true
|
|
|
|
[dev-dependencies]
|
|
once_cell.workspace = true
|
|
rustls-pemfile.workspace = true
|
|
tokio-postgres.workspace = true
|
|
tokio-postgres-rustls.workspace = true |