mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-03 19:42:55 +00:00
Keeping the `mock` postgres cplane adaptor using "stock" tokio-postgres allows us to remove a lot of dead weight from our actual postgres connection logic.
21 lines
435 B
TOML
21 lines
435 B
TOML
[package]
|
|
name = "postgres-protocol2"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
license = "MIT/Apache-2.0"
|
|
|
|
[dependencies]
|
|
base64 = "0.20"
|
|
byteorder.workspace = true
|
|
bytes.workspace = true
|
|
fallible-iterator.workspace = true
|
|
hmac.workspace = true
|
|
memchr = "2.0"
|
|
rand.workspace = true
|
|
sha2.workspace = true
|
|
stringprep = "0.1"
|
|
tokio = { workspace = true, features = ["rt"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["full"] }
|