mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-10 15:02:56 +00:00
This upgrades the `proxy/` crate as well as the forked libraries in `libs/proxy/` to edition 2024. Also reformats the imports of those forked libraries via: ``` cargo +nightly fmt -p proxy -p postgres-protocol2 -p postgres-types2 -p tokio-postgres2 -- -l --config imports_granularity=Module,group_imports=StdExternalCrate,reorder_imports=true ``` It can be read commit-by-commit: the first commit has no formatting changes, only changes to accomodate the new edition. Part of #10918
20 lines
598 B
TOML
20 lines
598 B
TOML
[package]
|
|
name = "tokio-postgres2"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT/Apache-2.0"
|
|
|
|
[dependencies]
|
|
bytes.workspace = true
|
|
fallible-iterator.workspace = true
|
|
futures-util = { workspace = true, features = ["sink"] }
|
|
log = "0.4"
|
|
parking_lot.workspace = true
|
|
pin-project-lite.workspace = true
|
|
phf = "0.11"
|
|
postgres-protocol2 = { path = "../postgres-protocol2" }
|
|
postgres-types2 = { path = "../postgres-types2" }
|
|
tokio = { workspace = true, features = ["io-util", "time", "net"] }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
serde = { workspace = true, features = ["derive"] }
|