mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-09 14:32:57 +00:00
In #4743, we'd like to convert the read path to use `async` rust. In preparation of that, this PR switches some functions that are calling lower level functions like `BlockReader::read_blk`, `BlockCursor::read_blob`, etc into `async`. The PR does not switch all functions however, and only focuses on the ones which are easy to switch. This leaves around some async functions that are (currently) unnecessarily `async`, but on the other hand it makes future changes smaller in diff. Part of #4743 (but does not completely address it).
20 lines
498 B
TOML
20 lines
498 B
TOML
[package]
|
|
name = "pagectl"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
bytes.workspace = true
|
|
clap = { workspace = true, features = ["string"] }
|
|
git-version.workspace = true
|
|
pageserver = { path = ".." }
|
|
postgres_ffi.workspace = true
|
|
tokio.workspace = true
|
|
utils.workspace = true
|
|
svg_fmt.workspace = true
|
|
workspace_hack.workspace = true
|