Switch tokio-postgres dependency to git repo

The other crates in this repository use zenithdb/rust-postgres as a
dependency for the related items, instead of the crates.io versions.

Switching to using that for the proxy as well removes an additional
three dependencies when we compile. (319 -> 316)
This commit is contained in:
Max Sharnoff
2021-09-07 19:49:03 -07:00
committed by GitHub
parent 4b73ada26e
commit d7313bb85c
2 changed files with 10 additions and 62 deletions

View File

@@ -15,7 +15,7 @@ hex = "0.4.3"
serde = "1"
serde_json = "1"
tokio = { version = "1.7.1", features = ["full"] }
tokio-postgres = "0.7.2"
tokio-postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" }
clap = "2.33.0"
rustls = "0.19.1"