mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-07 05:22:56 +00:00
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.
25 lines
614 B
TOML
25 lines
614 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
|
|
bytes.workspace = true
|