From c5bb88e1731ddce41a8cad9b27463271747e1577 Mon Sep 17 00:00:00 2001 From: Dom Dwyer Date: Tue, 18 Apr 2023 12:07:13 +0200 Subject: [PATCH] chore: remove unused dependencies Some crates import dependencies they never use. --- Cargo.lock | 4 ---- garbage_collector/Cargo.toml | 1 - querier/Cargo.toml | 1 - router/Cargo.toml | 1 - schema/Cargo.toml | 1 - 5 files changed, 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bb4922a8b6..c1ac895974 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2033,7 +2033,6 @@ name = "garbage_collector" version = "0.1.0" dependencies = [ "chrono", - "chrono-english", "clap 4.2.2", "clap_blocks", "data_types", @@ -4459,7 +4458,6 @@ dependencies = [ "service_grpc_catalog", "service_grpc_object_store", "service_grpc_schema", - "sharder", "snafu", "test_helpers", "thiserror", @@ -4736,7 +4734,6 @@ dependencies = [ "iox_catalog", "iox_tests", "iox_time", - "ioxd_common", "metric", "mutable_batch", "mutable_batch_lp", @@ -4909,7 +4906,6 @@ dependencies = [ "arrow", "hashbrown 0.13.2", "indexmap", - "itertools", "observability_deps", "snafu", "workspace-hack", diff --git a/garbage_collector/Cargo.toml b/garbage_collector/Cargo.toml index e52593e753..aae3302d88 100644 --- a/garbage_collector/Cargo.toml +++ b/garbage_collector/Cargo.toml @@ -7,7 +7,6 @@ license.workspace = true [dependencies] chrono = { version = "0.4", default-features = false } -chrono-english = { workspace = true } clap = { version = "4", features = ["derive", "env"] } clap_blocks = { path = "../clap_blocks" } data_types = { path = "../data_types" } diff --git a/querier/Cargo.toml b/querier/Cargo.toml index a6d02feb0f..3f97b29b13 100644 --- a/querier/Cargo.toml +++ b/querier/Cargo.toml @@ -36,7 +36,6 @@ service_grpc_catalog = { path = "../service_grpc_catalog"} service_grpc_schema = { path = "../service_grpc_schema" } service_grpc_object_store = { path = "../service_grpc_object_store" } schema = { path = "../schema" } -sharder = { path = "../sharder" } snafu = "0.7" thiserror = "1.0" tokio = { version = "1.27", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } diff --git a/router/Cargo.toml b/router/Cargo.toml index 8ef46a81c7..63cfe75a01 100644 --- a/router/Cargo.toml +++ b/router/Cargo.toml @@ -20,7 +20,6 @@ hashbrown = { workspace = true } hyper = "0.14" iox_catalog = { path = "../iox_catalog" } iox_time = { path = "../iox_time" } -ioxd_common = { path = "../ioxd_common" } metric = { path = "../metric" } mutable_batch = { path = "../mutable_batch" } mutable_batch_lp = { path = "../mutable_batch_lp" } diff --git a/schema/Cargo.toml b/schema/Cargo.toml index 0b1a632739..d2a194f66b 100644 --- a/schema/Cargo.toml +++ b/schema/Cargo.toml @@ -10,7 +10,6 @@ license.workspace = true arrow = { workspace = true, features = ["prettyprint"] } hashbrown = { workspace = true } indexmap = { version = "1.9", features = ["std"] } -itertools = "0.10.5" observability_deps = { path = "../observability_deps" } snafu = "0.7" workspace-hack = { version = "0.1", path = "../workspace-hack" }