Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
levkk committed Jan 9, 2025
1 parent bd1f2ad commit bc5c47c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions pgdog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
name = "pgdog"
version = "0.1.0"
edition = "2021"
description = "Modern PostgreSQL proxy and pooler."
description = "Modern PostgreSQL proxy, pooler and load balancer."
authors = ["Lev Kokotov <[email protected]>"]
license = "AGPL-3.0"
homepage = "https://pgdog.dev"
repository = "https://github.com/levkk/pgdog"

[dependencies]
pin-project = "1"
Expand All @@ -14,17 +16,16 @@ tracing-subscriber = { version = "0.3", features = ["env-filter", "std"] }
parking_lot = "0.12"
thiserror = "2"
bytes = "1"
# mlua = "0.10"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
async-trait = "*"
rand = "*"
async-trait = "0.1"
rand = "0.8"
once_cell = "1"
tokio-rustls = "0.26"
rustls-native-certs = "0.8"
rustls-pki-types = "*"
rustls-pki-types = "1"
arc-swap = "1"
toml = "0.8"
pgdog-plugin = { path = "../pgdog-plugin" }
tokio-util = { version = "0.7", features = ["rt"] }
fnv = "*"
fnv = "1"

0 comments on commit bc5c47c

Please sign in to comment.