diff --git a/Cargo.lock b/Cargo.lock index 8299cbe7d9..2e818f3f4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -384,7 +384,6 @@ version = "0.1.0" dependencies = [ "home", "lazy_static", - "pageserver", "postgres", "rand 0.8.3", "regex", @@ -392,7 +391,6 @@ dependencies = [ "serde_derive", "tokio-postgres", "toml", - "walkeeper", ] [[package]] @@ -928,11 +926,9 @@ version = "0.1.0" dependencies = [ "control_plane", "lazy_static", - "pageserver", "postgres", "rand 0.8.3", "tokio-postgres", - "walkeeper", ] [[package]] @@ -2295,7 +2291,6 @@ dependencies = [ "futures", "lazy_static", "log", - "pageserver", "postgres", "postgres-protocol", "rand 0.8.3", diff --git a/control_plane/Cargo.toml b/control_plane/Cargo.toml index c4ec2e9b33..7281595c18 100644 --- a/control_plane/Cargo.toml +++ b/control_plane/Cargo.toml @@ -17,6 +17,3 @@ toml = "" home = "0.5.3" lazy_static = "" regex = "1" - -pageserver = { path = "../pageserver" } -walkeeper = { path = "../walkeeper" } diff --git a/integration_tests/Cargo.toml b/integration_tests/Cargo.toml index 51f9d0c773..b201b1849e 100644 --- a/integration_tests/Cargo.toml +++ b/integration_tests/Cargo.toml @@ -12,6 +12,4 @@ rand = "0.8.3" postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="a0d067b66447951d1276a53fb09886539c3fa094" } tokio-postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="a0d067b66447951d1276a53fb09886539c3fa094" } -pageserver = { path = "../pageserver" } -walkeeper = { path = "../walkeeper" } control_plane = { path = "../control_plane" } diff --git a/walkeeper/Cargo.toml b/walkeeper/Cargo.toml index e025a26d9b..21e49bb096 100644 --- a/walkeeper/Cargo.toml +++ b/walkeeper/Cargo.toml @@ -34,5 +34,3 @@ postgres-protocol = { git = "https://github.com/zenithdb/rust-postgres.git", rev postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="a0d067b66447951d1276a53fb09886539c3fa094" } anyhow = "1.0" crc32c = "0.6.0" - -pageserver = { path = "../pageserver" }