mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-09 06:22:57 +00:00
remote unnecessary dependencies between peer crates
These dependencies make cargo rebuild more than is strictly necessary. Removing them makes the build a little faster.
This commit is contained in:
5
Cargo.lock
generated
5
Cargo.lock
generated
@@ -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",
|
||||
|
||||
@@ -17,6 +17,3 @@ toml = ""
|
||||
home = "0.5.3"
|
||||
lazy_static = ""
|
||||
regex = "1"
|
||||
|
||||
pageserver = { path = "../pageserver" }
|
||||
walkeeper = { path = "../walkeeper" }
|
||||
|
||||
@@ -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" }
|
||||
|
||||
@@ -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" }
|
||||
|
||||
Reference in New Issue
Block a user