From 93e0ac2b7ae84747188d0da98061333b4a52a150 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Thu, 14 Apr 2022 16:17:47 +0300 Subject: [PATCH] Remove a couple of unused dependencies. Found by "cargo-udeps" --- Cargo.lock | 2 -- pageserver/Cargo.toml | 1 - proxy/Cargo.toml | 1 - 3 files changed, 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0584b9d6d2..5027c4bdc7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1551,7 +1551,6 @@ dependencies = [ "tokio-util 0.7.0", "toml_edit", "tracing", - "tracing-futures", "url", "workspace_hack", "zenith_metrics", @@ -1938,7 +1937,6 @@ dependencies = [ "tokio-postgres 0.7.1 (git+https://github.com/zenithdb/rust-postgres.git?rev=2949d98df52587d562986aad155dd4e889e408b7)", "tokio-postgres-rustls", "tokio-rustls 0.22.0", - "tokio-stream", "workspace_hack", "zenith_metrics", "zenith_utils", diff --git a/pageserver/Cargo.toml b/pageserver/Cargo.toml index dccdca291c..e92ac0421c 100644 --- a/pageserver/Cargo.toml +++ b/pageserver/Cargo.toml @@ -37,7 +37,6 @@ toml_edit = { version = "0.13", features = ["easy"] } scopeguard = "1.1.0" const_format = "0.2.21" tracing = "0.1.27" -tracing-futures = "0.2" signal-hook = "0.3.10" url = "2" nix = "0.23" diff --git a/proxy/Cargo.toml b/proxy/Cargo.toml index 56b6dd7e20..be03a2d4a9 100644 --- a/proxy/Cargo.toml +++ b/proxy/Cargo.toml @@ -31,7 +31,6 @@ thiserror = "1.0.30" tokio = { version = "1.17", features = ["macros"] } tokio-postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="2949d98df52587d562986aad155dd4e889e408b7" } tokio-rustls = "0.22.0" -tokio-stream = "0.1.8" zenith_utils = { path = "../zenith_utils" } zenith_metrics = { path = "../zenith_metrics" }