mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-30 03:20:36 +00:00
I've rebased[1] Neon's fork of rust-postgres to incorporate latest upstream changes (including dependabot's fixes), so we need to advance revs here as well. [1] https://github.com/neondatabase/rust-postgres/commits/neon
17 lines
470 B
TOML
17 lines
470 B
TOML
[package]
|
|
name = "pq_proto"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bytes = "1.0.1"
|
|
pin-project-lite = "0.2.7"
|
|
postgres-protocol = { git = "https://github.com/neondatabase/rust-postgres.git", rev="43e6db254a97fdecbce33d8bc0890accfd74495e" }
|
|
rand = "0.8.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1.17", features = ["macros"] }
|
|
tracing = "0.1"
|
|
|
|
workspace_hack = { version = "0.1", path = "../../workspace_hack" }
|