diff --git a/Cargo.lock b/Cargo.lock index 12400cb7182..ce1298cbc3b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3417,7 +3417,7 @@ checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" [[package]] name = "postgres-native-tls" version = "0.5.0" -source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#c62b9928d402685e152161907e8480603c29ef65" +source = "git+https://github.com/tmm1/rust-postgres?branch=execute-typed#6debe5b6ba7f1e3904eb58f87a829b18e1735003" dependencies = [ "native-tls", "tokio", @@ -3428,7 +3428,7 @@ dependencies = [ [[package]] name = "postgres-protocol" version = "0.6.7" -source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#c62b9928d402685e152161907e8480603c29ef65" +source = "git+https://github.com/tmm1/rust-postgres?branch=execute-typed#6debe5b6ba7f1e3904eb58f87a829b18e1735003" dependencies = [ "base64 0.22.1", "byteorder", @@ -3445,7 +3445,7 @@ dependencies = [ [[package]] name = "postgres-types" version = "0.2.8" -source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#c62b9928d402685e152161907e8480603c29ef65" +source = "git+https://github.com/tmm1/rust-postgres?branch=execute-typed#6debe5b6ba7f1e3904eb58f87a829b18e1735003" dependencies = [ "bit-vec", "bytes", @@ -5764,7 +5764,7 @@ dependencies = [ [[package]] name = "tokio-postgres" version = "0.7.12" -source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#c62b9928d402685e152161907e8480603c29ef65" +source = "git+https://github.com/tmm1/rust-postgres?branch=execute-typed#6debe5b6ba7f1e3904eb58f87a829b18e1735003" dependencies = [ "async-trait", "byteorder", diff --git a/quaint/Cargo.toml b/quaint/Cargo.toml index b1880dcad34..f9e9c74b943 100644 --- a/quaint/Cargo.toml +++ b/quaint/Cargo.toml @@ -168,8 +168,8 @@ features = [ "with-serde_json-1", "with-bit-vec-0_6", ] -git = "https://github.com/prisma/rust-postgres" -branch = "pgbouncer-mode" +git = "https://github.com/tmm1/rust-postgres" +branch = "execute-typed" optional = true [dependencies.postgres-types] @@ -179,13 +179,13 @@ features = [ "with-serde_json-1", "with-bit-vec-0_6", ] -git = "https://github.com/prisma/rust-postgres" -branch = "pgbouncer-mode" +git = "https://github.com/tmm1/rust-postgres" +branch = "execute-typed" optional = true [dependencies.postgres-native-tls] -git = "https://github.com/prisma/rust-postgres" -branch = "pgbouncer-mode" +git = "https://github.com/tmm1/rust-postgres" +branch = "execute-typed" optional = true [dependencies.tokio]