diff --git a/Cargo.toml b/Cargo.toml index f6180f3b7c..ebfa4baab9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -121,6 +121,7 @@ arrow-flight = { version = "40.0.0" } datafusion = { git = "https://github.com/apache/arrow-datafusion.git", rev="ee1019d9585252066ef5b288c84aabebcbd93ca6", default-features = false } datafusion-proto = { git = "https://github.com/apache/arrow-datafusion.git", rev="ee1019d9585252066ef5b288c84aabebcbd93ca6" } hashbrown = { version = "0.13.2" } +object_store = { version = "0.5.6" } parquet = { version = "40.0.0" } tonic = { version = "0.9.2", features = ["tls", "tls-webpki-roots"] } tonic-build = { version = "0.9.2" } diff --git a/clap_blocks/Cargo.toml b/clap_blocks/Cargo.toml index 538921dcc3..1b932dfe88 100644 --- a/clap_blocks/Cargo.toml +++ b/clap_blocks/Cargo.toml @@ -12,7 +12,7 @@ http = "0.2.9" humantime = "2.1.0" iox_catalog = { path = "../iox_catalog" } metric = { path = "../metric" } -object_store = "0.5.6" +object_store = { workspace = true } observability_deps = { path = "../observability_deps" } snafu = "0.7" trace_exporters = { path = "../trace_exporters" } diff --git a/compactor/Cargo.toml b/compactor/Cargo.toml index 0fb75b88c3..ef436b40f9 100644 --- a/compactor/Cargo.toml +++ b/compactor/Cargo.toml @@ -17,7 +17,7 @@ iox_query = { path = "../iox_query" } iox_time = { path = "../iox_time" } itertools = "0.10.5" metric = { path = "../metric" } -object_store = "0.5.6" +object_store = { workspace = true } observability_deps = { path = "../observability_deps" } parquet_file = { path = "../parquet_file" } predicate = { path = "../predicate" } diff --git a/compactor_test_utils/Cargo.toml b/compactor_test_utils/Cargo.toml index 3d6592576c..0d1f335634 100644 --- a/compactor_test_utils/Cargo.toml +++ b/compactor_test_utils/Cargo.toml @@ -18,7 +18,7 @@ iox_catalog = { path = "../iox_catalog" } iox_query = { path = "../iox_query" } iox_tests = { path = "../iox_tests" } iox_time = { path = "../iox_time" } -object_store = "0.5.6" +object_store = { workspace = true } observability_deps = { path = "../observability_deps" } parquet_file = { path = "../parquet_file" } schema = { path = "../schema" } diff --git a/datafusion_util/Cargo.toml b/datafusion_util/Cargo.toml index 1c51495d38..3b70e903c7 100644 --- a/datafusion_util/Cargo.toml +++ b/datafusion_util/Cargo.toml @@ -10,7 +10,7 @@ license.workspace = true async-trait = "0.1" datafusion = { workspace = true } futures = "0.3" -object_store = "0.5.6" +object_store = { workspace = true } observability_deps = { path = "../observability_deps" } pin-project = "1.1" tokio = { version = "1.28", features = ["parking_lot", "sync"] } diff --git a/garbage_collector/Cargo.toml b/garbage_collector/Cargo.toml index afe82e0f87..6c319dfa02 100644 --- a/garbage_collector/Cargo.toml +++ b/garbage_collector/Cargo.toml @@ -14,7 +14,7 @@ futures = "0.3" humantime = "2.1.0" iox_catalog = { path = "../iox_catalog" } backoff = { path = "../backoff" } -object_store = { version = "0.5.6" } +object_store = { workspace = true } observability_deps = { path = "../observability_deps" } snafu = "0.7" tokio = { version = "1", features = ["macros", "rt", "sync"] } diff --git a/influxdb_iox/Cargo.toml b/influxdb_iox/Cargo.toml index e926bcfbeb..1a60a5c21c 100644 --- a/influxdb_iox/Cargo.toml +++ b/influxdb_iox/Cargo.toml @@ -29,7 +29,7 @@ ioxd_querier = { path = "../ioxd_querier"} ioxd_router = { path = "../ioxd_router"} ioxd_test = { path = "../ioxd_test"} metric = { path = "../metric" } -object_store = "0.5.6" +object_store = { workspace = true } object_store_metrics = { path = "../object_store_metrics" } observability_deps = { path = "../observability_deps" } panic_logging = { path = "../panic_logging" } diff --git a/ingester/Cargo.toml b/ingester/Cargo.toml index 1c8b5fae32..e7c6fb1ea8 100644 --- a/ingester/Cargo.toml +++ b/ingester/Cargo.toml @@ -57,7 +57,7 @@ influxdb_iox_client = { path = "../influxdb_iox_client" } ingester_test_ctx = { path = "../ingester_test_ctx" } lazy_static = "1.4.0" mutable_batch_lp = { path = "../mutable_batch_lp" } -object_store = "0.5.6" +object_store = { workspace = true } paste = "1.0.12" tempfile = "3.5.0" test_helpers = { path = "../test_helpers", features = ["future_timeout"] } diff --git a/ingester_test_ctx/Cargo.toml b/ingester_test_ctx/Cargo.toml index 91dab9b750..3096c111d6 100644 --- a/ingester_test_ctx/Cargo.toml +++ b/ingester_test_ctx/Cargo.toml @@ -23,7 +23,7 @@ iox_time = { path = "../iox_time" } metric = { version = "0.1.0", path = "../metric" } mutable_batch_lp = { path = "../mutable_batch_lp" } mutable_batch_pb = { version = "0.1.0", path = "../mutable_batch_pb" } -object_store = "0.5.6" +object_store = { workspace = true } observability_deps = { version = "0.1.0", path = "../observability_deps" } parquet_file = { version = "0.1.0", path = "../parquet_file" } prost = { version = "0.11.9", default-features = false, features = ["std"] } diff --git a/iox_query/Cargo.toml b/iox_query/Cargo.toml index 5a35c8fbc6..06156d5a69 100644 --- a/iox_query/Cargo.toml +++ b/iox_query/Cargo.toml @@ -27,7 +27,7 @@ futures = "0.3" hashbrown = { workspace = true } indexmap = { version = "1.9", features = ["std"] } itertools = "0.10.5" -object_store = "0.5.6" +object_store = { workspace = true } observability_deps = { path = "../observability_deps" } once_cell = "1" parking_lot = "0.12" diff --git a/iox_tests/Cargo.toml b/iox_tests/Cargo.toml index 2beef32128..3677f20ed4 100644 --- a/iox_tests/Cargo.toml +++ b/iox_tests/Cargo.toml @@ -16,7 +16,7 @@ iox_query = { path = "../iox_query" } iox_time = { path = "../iox_time" } metric = { path = "../metric" } mutable_batch_lp = { path = "../mutable_batch_lp" } -object_store = "0.5.6" +object_store = { workspace = true } observability_deps = { path = "../observability_deps" } parquet_file = { path = "../parquet_file" } schema = { path = "../schema" } diff --git a/ioxd_querier/Cargo.toml b/ioxd_querier/Cargo.toml index 73adc18aa8..77f9ad4a32 100644 --- a/ioxd_querier/Cargo.toml +++ b/ioxd_querier/Cargo.toml @@ -15,7 +15,7 @@ generated_types = { path = "../generated_types" } iox_catalog = { path = "../iox_catalog" } ioxd_common = { path = "../ioxd_common" } metric = { path = "../metric" } -object_store = "0.5.6" +object_store = { workspace = true } querier = { path = "../querier" } iox_query = { path = "../iox_query" } service_grpc_flight = { path = "../service_grpc_flight" } diff --git a/ioxd_router/Cargo.toml b/ioxd_router/Cargo.toml index 84942fc9d9..df5a10f5dc 100644 --- a/ioxd_router/Cargo.toml +++ b/ioxd_router/Cargo.toml @@ -16,7 +16,7 @@ iox_catalog = { path = "../iox_catalog" } ioxd_common = { path = "../ioxd_common" } metric = { path = "../metric" } mutable_batch = { path = "../mutable_batch" } -object_store = "0.5.6" +object_store = { workspace = true } router = { path = "../router" } thiserror = "1.0.40" tokio-util = { version = "0.7.8" } diff --git a/object_store_metrics/Cargo.toml b/object_store_metrics/Cargo.toml index 2f0fca4d71..6e47944bdd 100644 --- a/object_store_metrics/Cargo.toml +++ b/object_store_metrics/Cargo.toml @@ -11,7 +11,7 @@ bytes = "1.4" futures = "0.3" iox_time = { version = "0.1.0", path = "../iox_time" } metric = { version = "0.1.0", path = "../metric" } -object_store = "0.5.6" +object_store = { workspace = true } pin-project = "1.1.0" tokio = { version = "1.28", features = ["io-util"] } workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/parquet_file/Cargo.toml b/parquet_file/Cargo.toml index e3faaf80e8..5c6759f588 100644 --- a/parquet_file/Cargo.toml +++ b/parquet_file/Cargo.toml @@ -15,7 +15,7 @@ datafusion_util = { path = "../datafusion_util" } futures = "0.3" generated_types = { path = "../generated_types" } iox_time = { path = "../iox_time" } -object_store = "0.5.6" +object_store = { workspace = true } observability_deps = { path = "../observability_deps" } parquet = { workspace = true, features = ["experimental"]} pbjson-types = "0.5" diff --git a/parquet_to_line_protocol/Cargo.toml b/parquet_to_line_protocol/Cargo.toml index 5bbbb44993..b6eb06de9c 100644 --- a/parquet_to_line_protocol/Cargo.toml +++ b/parquet_to_line_protocol/Cargo.toml @@ -11,7 +11,7 @@ datafusion_util = { path = "../datafusion_util" } influxdb-line-protocol = { path = "../influxdb_line_protocol" } futures = {version = "0.3"} num_cpus = "1.15.0" -object_store = { version = "0.5.6" } +object_store = { workspace = true } parquet_file = { path = "../parquet_file" } schema = { path = "../schema" } tokio = "1.28" diff --git a/querier/Cargo.toml b/querier/Cargo.toml index e79db7ba94..f8d41d81b7 100644 --- a/querier/Cargo.toml +++ b/querier/Cargo.toml @@ -23,7 +23,7 @@ iox_query = { path = "../iox_query" } iox_time = { path = "../iox_time" } ingester_query_grpc = { path = "../ingester_query_grpc" } metric = { path = "../metric" } -object_store = "0.5.6" +object_store = { workspace = true } observability_deps = { path = "../observability_deps" } parking_lot = "0.12" parquet_file = { path = "../parquet_file" } diff --git a/router/Cargo.toml b/router/Cargo.toml index 5b275c5bdb..005b2bb2ff 100644 --- a/router/Cargo.toml +++ b/router/Cargo.toml @@ -23,7 +23,7 @@ metric = { path = "../metric" } mutable_batch = { path = "../mutable_batch" } mutable_batch_lp = { path = "../mutable_batch_lp" } mutable_batch_pb = { version = "0.1.0", path = "../mutable_batch_pb" } -object_store = "0.5.6" +object_store = { workspace = true } observability_deps = { path = "../observability_deps" } parking_lot = "0.12" serde = "1.0" diff --git a/service_grpc_object_store/Cargo.toml b/service_grpc_object_store/Cargo.toml index dfa76aeebd..c99f98ba24 100644 --- a/service_grpc_object_store/Cargo.toml +++ b/service_grpc_object_store/Cargo.toml @@ -9,7 +9,7 @@ license.workspace = true futures = "0.3" generated_types = { path = "../generated_types" } iox_catalog = { path = "../iox_catalog" } -object_store = "0.5.6" +object_store = { workspace = true } observability_deps = { path = "../observability_deps" } parquet_file = { path = "../parquet_file" } tonic = { workspace = true }