From 703e5d2df5cb00a40afadbc29ba9a3b380e5f404 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sat, 5 Aug 2023 14:55:25 -0700 Subject: [PATCH] Improved dependency requirements - closes #5 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 46d64ce..ec09cb5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,9 +11,9 @@ readme = "README.md" [dependencies] byteorder = "1" bytes = "1" -postgres = { version = "0", optional = true } +postgres = { version = "0.19", optional = true } diesel = { version = "2", features = ["postgres"], optional = true } -sqlx = { version = "0", features = ["postgres"], optional = true } +sqlx = { version = ">= 0.5, < 0.8", features = ["postgres"], optional = true } [dev-dependencies] sqlx = { version = "0", features = ["runtime-async-std-native-tls"] }