diff --git a/Cargo.lock b/Cargo.lock index a45aa06825..19edcd2c0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -266,7 +266,6 @@ dependencies = [ "serde", "tar", "thiserror", - "tokio-postgres", "toml", "walkeeper", "workspace_hack", @@ -778,7 +777,6 @@ dependencies = [ "pageserver", "postgres", "rand", - "tokio-postgres", "walkeeper", ] @@ -1177,7 +1175,6 @@ dependencies = [ "termion", "thiserror", "tokio", - "tokio-postgres", "tokio-stream", "tui", "walkdir", @@ -2240,7 +2237,6 @@ dependencies = [ "slog-stdlog", "slog-term", "tokio", - "tokio-postgres", "tokio-stream", "walkdir", "workspace_hack", diff --git a/control_plane/Cargo.toml b/control_plane/Cargo.toml index 946afe0f5c..e3307a9f1f 100644 --- a/control_plane/Cargo.toml +++ b/control_plane/Cargo.toml @@ -10,7 +10,6 @@ edition = "2018" rand = "0.8.3" tar = "0.4.33" postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" } -tokio-postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" } serde = { version = "1.0", features = ["derive"] } toml = "0.5" lazy_static = "1.4" diff --git a/integration_tests/Cargo.toml b/integration_tests/Cargo.toml index bf2d562e84..76d78aab0f 100644 --- a/integration_tests/Cargo.toml +++ b/integration_tests/Cargo.toml @@ -10,8 +10,6 @@ edition = "2018" lazy_static = "1.4.0" rand = "0.8.3" postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" } -tokio-postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" } - pageserver = { path = "../pageserver" } walkeeper = { path = "../walkeeper" } control_plane = { path = "../control_plane" } diff --git a/pageserver/Cargo.toml b/pageserver/Cargo.toml index 84d7562b2f..f832539a76 100644 --- a/pageserver/Cargo.toml +++ b/pageserver/Cargo.toml @@ -27,7 +27,6 @@ daemonize = "0.4.1" rust-s3 = { version = "0.27.0-rc4", features = ["no-verify-ssl"] } tokio = { version = "1.3.0", features = ["full"] } tokio-stream = { version = "0.1.4" } -tokio-postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" } postgres-types = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" } postgres-protocol = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" } postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" } diff --git a/walkeeper/Cargo.toml b/walkeeper/Cargo.toml index 267c408819..dc8b9c9bd3 100644 --- a/walkeeper/Cargo.toml +++ b/walkeeper/Cargo.toml @@ -23,7 +23,6 @@ daemonize = "0.4.1" rust-s3 = { version = "0.27.0-rc4", features = ["no-verify-ssl"] } tokio = { version = "1.3.0", features = ["full"] } tokio-stream = { version = "0.1.4" } -tokio-postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" } postgres-protocol = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" } postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" } anyhow = "1.0"